ORIGINAL SOURCE CODE FOR EXPNAME.FRM
Made on Tuesday, Apr 8, 2003 at 9:43 AM
Option Explicit
'>>>>>>>>>>>>>>>>>>>>>>>>
'ResMe Converted To A Property: Const FORMCAPTION = "Export"
'ResMe Converted To A Property: Const BUTTON1 = "&OK"
'ResMe Converted To A Property: Const BUTTON2 = "&Cancel"
'>>>>>>>>>>>>>>>>>>>>>>>>
Private Sub cmdCancel_Click()
gExpTable = vbNullString
Unload Me
End Sub
Private Sub cmdOK_Click()
gExpTable = txtTable.Text
Unload Me
End Sub
Private Sub Form_KeyUp(KeyCode As Integer, Shift As Integer)
If KeyCode = vbKeyF1 And Shift = 0 Then
DisplayTopic 2016127
End If
End Sub
Sub Form_Load()
'ResMe autogenerated line of code to call the initialization routine that was automatically generated.
Call frmExpName_Auto_Init
Me.Caption = FORMCAPTION
cmdOK.Caption = BUTTON1
cmdCancel.Caption = BUTTON2
End Sub
'*********************************************************************************
'** This Section Of Code Was Automatically Generated By ResMe **
'** **
'** String assignments to Constants have been converted to read-only properties **
'*********************************************************************************
'This was: Const FORMCAPTION = "Export"
Property Get FORMCAPTION As String
FORMCAPTION = "Export"
End Property
'This was: Const BUTTON1 = "&OK"
Property Get BUTTON1 As String
BUTTON1 = "&OK"
End Property
'This was: Const BUTTON2 = "&Cancel"
Property Get BUTTON2 As String
BUTTON2 = "&Cancel"
End Property
Private Sub frmExpName_Auto_Init()
'This routine initializes all User Interface control properties on frmExpName.
'This section of code was automatically generated by the ResMe String Extraction Utility.
Me.Caption = "Export Name"
cmdCancel.Caption = "&Cancel"
cmdOK.Caption = "&OK"
End Sub