home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 1998 April
/
ChipCD_498.iso
/
software
/
ftp
/
quickftp
/
quickft4.frm
< prev
next >
Wrap
Text File
|
1996-01-30
|
2KB
|
83 lines
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
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