home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form frmOpen
- BackColor = &H80000012&
- BorderStyle = 1 'Fixed Single
- Caption = "Open"
- ClientHeight = 1695
- ClientLeft = 4635
- ClientTop = 2685
- ClientWidth = 1815
- Icon = "frmOpen.frx":0000
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 1695
- ScaleWidth = 1815
- Begin VB.CommandButton cmdDone
- Caption = "Done"
- Height = 375
- Left = 120
- TabIndex = 1
- Top = 1200
- Width = 1575
- End
- Begin VB.Label Label1
- BackColor = &H80000012&
- Caption = " This command opens a window and allows you to type in an address and it takes you there."
- ForeColor = &H000000FF&
- Height = 1095
- Left = 120
- TabIndex = 0
- Top = 120
- Width = 1695
- End
- Attribute VB_Name = "frmOpen"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub cmdDone_Click()
- frmOpen.Hide
- frmFile.Show
- End Sub
-