home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form Title
- BackColor = &H00C0C0C0&
- BorderStyle = 3 'Fixed Double
- Caption = "VBrowser"
- Height = 3525
- Left = 1200
- LinkTopic = "Form2"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 3120
- ScaleWidth = 4875
- Top = 1425
- Width = 4995
- Begin CommandButton cmdOK
- Caption = "OK"
- Default = -1 'True
- Height = 435
- Left = 1860
- TabIndex = 1
- Top = 2340
- Visible = 0 'False
- Width = 1215
- End
- Begin Label lblMessage
- Alignment = 2 'Center
- BackStyle = 0 'Transparent
- Caption = "Initializing VBrowser ..."
- FontBold = -1 'True
- FontItalic = 0 'False
- FontName = "MS Sans Serif"
- FontSize = 9.75
- FontStrikethru = 0 'False
- FontUnderline = 0 'False
- Height = 315
- Left = 1080
- TabIndex = 0
- Top = 1140
- Width = 2475
- End
- Option Explicit
- Sub cmdOK_Click ()
- ' When the OK button is clicked, end the program
- End
- End Sub
- Sub Form_Load ()
- ' Center the form on the screen; center the label containing the message
- ' onto the form
- Title.Left = (Screen.Width - Title.Width) / 2
- Title.Top = (Screen.Height - Title.Height) / 2
- lblMessage.Left = (Title.ScaleWidth - lblMessage.Width) / 2
- lblMessage.Top = (Title.ScaleHeight - lblMessage.Height) / 2
- End Sub
-