home *** CD-ROM | disk | FTP | other *** search
- VERSION 4.00
- Begin VB.Form frmDataType
- BorderStyle = 3 'Fixed Double
- Caption = " "
- ClientHeight = 1515
- ClientLeft = 2280
- ClientTop = 3165
- ClientWidth = 4605
- Height = 1920
- HelpContextID = 2016123
- Icon = "DATATYPE.frx":0000
- Left = 2220
- LinkTopic = "Form2"
- LockControls = -1 'True
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 1515
- ScaleWidth = 4605
- Top = 2820
- Width = 4725
- Begin VB.CommandButton cmdCancel
- Cancel = -1 'True
- Caption = "&Cancel"
- Height = 375
- Left = 3120
- TabIndex = 2
- Top = 960
- Width = 1335
- End
- Begin VB.CommandButton cmdOK
- Caption = "&OK"
- Default = -1 'True
- Height = 375
- Left = 3120
- TabIndex = 1
- Top = 360
- Width = 1335
- End
- Begin VB.ListBox lstTypes
- Height = 1005
- ItemData = "DATATYPE.frx":030A
- Left = 120
- List = "DATATYPE.frx":0338
- TabIndex = 0
- Top = 360
- Width = 2895
- End
- Begin VB.Label lblLabel1
- AutoSize = -1 'True
- Caption = " Data Source: "
- Height = 195
- Left = 120
- TabIndex = 3
- Top = 60
- Width = 1035
- End
- Attribute VB_Name = "frmDataType"
- Attribute VB_Creatable = False
- Attribute VB_Exposed = False
- Option Explicit
- Private Sub cmdCancel_Click()
- gnDataType = gnDT_NONE
- Me.Hide
- End Sub
- Private Sub cmdOK_Click()
- gnDataType = lstTypes.ListIndex
- Me.Hide
- End Sub
- Private Sub lstTypes_DblClick()
- Call cmdOK_Click
- End Sub
- Private Sub Form_Load()
- CenterMe Me, gnMDIFORM
- If Tag <> "LOADED" Then
- Tag = "LOADED"
- End If
- lstTypes.ListIndex = 0
- End Sub
-