home *** CD-ROM | disk | FTP | other *** search
/ Mastering Visual Basic 5 / MasteringVisualBasic5.iso / ch_code / ch17 / demopage / vbform.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1997-02-20  |  1.8 KB  |  62 lines

  1. VERSION 5.00
  2. Begin VB.Form VBForm 
  3.    AutoRedraw      =   -1  'True
  4.    Caption         =   "VBForm"
  5.    ClientHeight    =   4110
  6.    ClientLeft      =   60
  7.    ClientTop       =   345
  8.    ClientWidth     =   6075
  9.    DrawWidth       =   2
  10.    LinkTopic       =   "Form1"
  11.    ScaleHeight     =   4110
  12.    ScaleWidth      =   6075
  13.    StartUpPosition =   3  'Windows Default
  14.    Begin VB.Label Label2 
  15.       Caption         =   "Command"
  16.       BeginProperty Font 
  17.          Name            =   "MS Sans Serif"
  18.          Size            =   9.75
  19.          Charset         =   0
  20.          Weight          =   700
  21.          Underline       =   0   'False
  22.          Italic          =   0   'False
  23.          Strikethrough   =   0   'False
  24.       EndProperty
  25.       Height          =   255
  26.       Left            =   120
  27.       TabIndex        =   1
  28.       Top             =   60
  29.       Width           =   1950
  30.    End
  31.    Begin VB.Label Label1 
  32.       BorderStyle     =   1  'Fixed Single
  33.       BeginProperty Font 
  34.          Name            =   "MS Sans Serif"
  35.          Size            =   9.75
  36.          Charset         =   0
  37.          Weight          =   400
  38.          Underline       =   0   'False
  39.          Italic          =   0   'False
  40.          Strikethrough   =   0   'False
  41.       EndProperty
  42.       Height          =   315
  43.       Left            =   135
  44.       TabIndex        =   0
  45.       Top             =   375
  46.       Width           =   5670
  47.    End
  48. Attribute VB_Name = "VBForm"
  49. Attribute VB_GlobalNameSpace = False
  50. Attribute VB_Creatable = False
  51. Attribute VB_PredeclaredId = True
  52. Attribute VB_Exposed = False
  53. Option Explicit
  54. Private Sub Command1_Click()
  55. End Sub
  56. Private Sub Form_Load()
  57. Dim target
  58.     target = App.Path & "\demo.htm"
  59.     WEBForm.WebBrowser1.Navigate target
  60.     WEBForm.Show
  61. End Sub
  62.