home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DP Tool Club 16
/
CD_ASCQ_16_0994.iso
/
news
/
4609
/
tx4vb
/
goto.fr_
/
goto.fr
Wrap
Text File
|
1994-03-09
|
2KB
|
60 lines
VERSION 2.00
Begin Form frmGotoDlg
Caption = "Goto Bookmark"
ClientHeight = 1350
ClientLeft = 1965
ClientTop = 2175
ClientWidth = 2730
Height = 1755
Left = 1905
LinkTopic = "Form2"
ScaleHeight = 1350
ScaleWidth = 2730
Top = 1830
Width = 2850
Begin TextBox Text1
Height = 285
Left = 2040
TabIndex = 2
Text = "1"
Top = 240
Width = 495
End
Begin CommandButton CmdCancel
Caption = "Cancel"
Height = 375
Left = 1440
TabIndex = 1
Top = 840
Width = 1095
End
Begin CommandButton cmdOk
Caption = "OK"
Height = 375
Left = 120
TabIndex = 0
Top = 840
Width = 1215
End
Begin Label Label1
Caption = "Go to bookmark no."
Height = 255
Left = 120
TabIndex = 3
Top = 240
Width = 1815
End
End
Sub CmdCancel_Click ()
Unload Me
End Sub
Sub cmdOk_Click ()
Form1!TextControl1.FieldCurrent = Text1.Text
Form1!TextControl1.SelStart = Form1!TextControl1.FieldStart - 1
Form1!TextControl1.SelLength = Form1!TextControl1.FieldEnd - Form1!TextControl1.FieldStart + 1
Unload Me
End Sub