VERSION 5.00
Begin VB.Form dlg_change_view
BorderStyle = 3 'Fixed Dialog
Caption = "Change View - Variable X"
ClientHeight = 2640
ClientLeft = 2760
ClientTop = 3750
ClientWidth = 4425
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 2640
ScaleWidth = 4425
ShowInTaskbar = 0 'False
Begin VB.TextBox txtStep
Height = 285
Left = 1200
TabIndex = 9
Top = 2040
Width = 1095
End
Begin VB.TextBox txtMax
Height = 285
Left = 1200
TabIndex = 8
Top = 1680
Width = 1095
End
Begin VB.TextBox txtMin
Height = 285
Left = 1200
TabIndex = 7
Top = 1320
Width = 1095
End
Begin VB.OptionButton op_continous
Caption = "Continous - make classes"
Height = 375
Left = 240
TabIndex = 3
Top = 720
Width = 2175
End
Begin VB.OptionButton op_integer
Caption = "Integer - show all values"
Height = 375
Left = 240
TabIndex = 2
Top = 240
Width = 2175
End
Begin VB.CommandButton CancelButton
Caption = "Cancel"
Height = 375
Left = 2880
TabIndex = 1
Top = 600
Width = 1215
End
Begin VB.CommandButton OKButton
Caption = "OK"
Height = 375
Left = 2880
TabIndex = 0
Top = 120
Width = 1215
End
Begin VB.Label Label3
Caption = "Step:"
Height = 255
Left = 600
TabIndex = 6
Top = 2040
Width = 375
End
Begin VB.Label Label2
Caption = "Max:"
Height = 255
Left = 600
TabIndex = 5
Top = 1680
Width = 375
End
Begin VB.Label Label1
Caption = "Min:"
Height = 255
Left = 600
TabIndex = 4
Top = 1320
Width = 375
End
End
Attribute VB_Name = "dlg_change_view"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Option Base 1
Private Sub CancelButton_Click()
Me.Hide
End Sub