home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form InputForm
- Caption = "Form1"
- ClientHeight = 660
- ClientLeft = 2925
- ClientTop = 4260
- ClientWidth = 5340
- ClipControls = 0 'False
- ControlBox = 0 'False
- Height = 1065
- Left = 2865
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 660
- ScaleWidth = 5340
- Top = 3915
- Width = 5460
- Begin PictureBox Picture1
- AutoSize = -1 'True
- BorderStyle = 0 'None
- Height = 480
- Left = 120
- Picture = QUICKFT4.FRX:0000
- ScaleHeight = 480
- ScaleWidth = 480
- TabIndex = 0
- Top = 120
- Width = 480
- End
- Begin TextBox Text1
- Height = 375
- Left = 720
- TabIndex = 1
- Text = "Text1"
- Top = 120
- Width = 4455
- End
- Sub command1_click (index As Integer)
- '__ InputForm command1_click
- '__ parameter index As Integer
- '__ called by InputForm Text1_KeyPress
- ' OKdialog = index - 1 '1-->0 cancel, false, 0-->-1, OK, true
- Unload inputform
- End Sub
- Sub Form_Activate ()
- '__ InputForm Form_Activate
- '__ calls GLOBAL switch_to
- switch_to text1
- End Sub
- Sub Form_Unload (Cancel As Integer)
- '__ InputForm Form_Unload
- '__ parameter Cancel As Integer
- inputformdata = text1.Text
- End Sub
- Sub Text1_KeyPress (keyascii As Integer)
- '__ InputForm Text1_KeyPress
- '__ parameter keyascii As Integer
- '__ calls InputForm command1_click
- If keyascii = 13 Then keyascii = 0: command1_click (1)
- End Sub
-