home *** CD-ROM | disk | FTP | other *** search
/ Mastering Visual Basic 5 / MasteringVisualBasic5.iso / ch_code / ch13 / htmlsrvr / webform.frm (.txt) < prev   
Encoding:
Visual Basic Form  |  1997-02-20  |  1.6 KB  |  53 lines

  1. VERSION 5.00
  2. Object = "{EAB22AC0-30C1-11CF-A7EB-0000C05BAE0B}#1.0#0"; "SHDOCVW.DLL"
  3. Begin VB.Form WebForm 
  4.    Caption         =   "Form1"
  5.    ClientHeight    =   6675
  6.    ClientLeft      =   60
  7.    ClientTop       =   345
  8.    ClientWidth     =   9465
  9.    LinkTopic       =   "Form1"
  10.    ScaleHeight     =   6675
  11.    ScaleWidth      =   9465
  12.    StartUpPosition =   3  'Windows Default
  13.    Begin SHDocVwCtl.WebBrowser WebBrowser1 
  14.       Height          =   5520
  15.       Left            =   180
  16.       TabIndex        =   0
  17.       Top             =   225
  18.       Width           =   9135
  19.       Object.Height          =   368
  20.       Object.Width           =   609
  21.       AutoSize        =   0
  22.       ViewMode        =   1
  23.       AutoSizePercentage=   0
  24.       AutoArrange     =   -1  'True
  25.       NoClientEdge    =   -1  'True
  26.       AlignLeft       =   0   'False
  27.    End
  28.    Begin VB.CommandButton Command1 
  29.       Caption         =   "Close"
  30.       BeginProperty Font 
  31.          Name            =   "Tahoma"
  32.          Size            =   11.25
  33.          Charset         =   0
  34.          Weight          =   400
  35.          Underline       =   0   'False
  36.          Italic          =   0   'False
  37.          Strikethrough   =   0   'False
  38.       EndProperty
  39.       Height          =   495
  40.       Left            =   7740
  41.       TabIndex        =   1
  42.       Top             =   6045
  43.       Width           =   1485
  44.    End
  45. Attribute VB_Name = "WebForm"
  46. Attribute VB_GlobalNameSpace = False
  47. Attribute VB_Creatable = False
  48. Attribute VB_PredeclaredId = True
  49. Attribute VB_Exposed = False
  50. Private Sub Command1_Click()
  51.     WebForm.Hide
  52. End Sub
  53.