home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form VBForm
- AutoRedraw = -1 'True
- Caption = "VBForm"
- ClientHeight = 4110
- ClientLeft = 60
- ClientTop = 345
- ClientWidth = 6075
- DrawWidth = 2
- LinkTopic = "Form1"
- ScaleHeight = 4110
- ScaleWidth = 6075
- StartUpPosition = 3 'Windows Default
- Begin VB.Label Label2
- Caption = "Command"
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 9.75
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 255
- Left = 120
- TabIndex = 1
- Top = 60
- Width = 1950
- End
- Begin VB.Label Label1
- BorderStyle = 1 'Fixed Single
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 9.75
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 315
- Left = 135
- TabIndex = 0
- Top = 375
- Width = 5670
- End
- Attribute VB_Name = "VBForm"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Option Explicit
- Private Sub Command1_Click()
- End Sub
- Private Sub Form_Load()
- Dim target
- target = App.Path & "\demo.htm"
- WEBForm.WebBrowser1.Navigate target
- WEBForm.Show
- End Sub
-