home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form frmView
- BackColor = &H80000012&
- BorderStyle = 1 'Fixed Single
- Caption = "View"
- ClientHeight = 2295
- ClientLeft = 4785
- ClientTop = 2685
- ClientWidth = 1710
- Icon = "frmView.frx":0000
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 2295
- ScaleWidth = 1710
- Begin VB.CommandButton cmdDone
- Caption = "Done"
- Height = 375
- Left = 120
- MousePointer = 10 'Up Arrow
- TabIndex = 0
- Top = 1680
- Width = 1335
- End
- Begin VB.Label lblPreferences
- BackColor = &H80000012&
- Caption = "Preferences"
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 12
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- ForeColor = &H00FF0000&
- Height = 495
- Left = 120
- MousePointer = 10 'Up Arrow
- TabIndex = 3
- Top = 1080
- Width = 1455
- End
- Begin VB.Label lblreload
- BackColor = &H80000012&
- Caption = "Reload"
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 12
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- ForeColor = &H00FF0000&
- Height = 495
- Left = 120
- MousePointer = 10 'Up Arrow
- TabIndex = 2
- Top = 600
- Width = 1215
- End
- Begin VB.Label lblRefresh
- BackColor = &H80000012&
- Caption = "Refresh"
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 12
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- ForeColor = &H00FF0000&
- Height = 375
- Left = 120
- MousePointer = 10 'Up Arrow
- TabIndex = 1
- Top = 120
- Width = 1215
- End
- Attribute VB_Name = "frmView"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub cmdDone_Click()
- frmView.Hide
- frmHElp.Show
- End Sub
- Private Sub lblPreferences_Click()
- frmHelpPreferences.Show
- frmView.Hide
- End Sub
- Private Sub lblRefresh_Click()
- frmReload.Show
- frmView.Hide
- End Sub
- Private Sub lblreload_Click()
- frmReload.Show
- frmView.Hide
- End Sub
-