home *** CD-ROM | disk | FTP | other *** search
/ Mastering Visual Basic 6 / mastvb6.iso / ch_code / ch04 / formload / form3.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1997-02-20  |  1.2 KB  |  44 lines

  1. VERSION 5.00
  2. Begin VB.Form Form3 
  3.    Caption         =   "Form3"
  4.    ClientHeight    =   3195
  5.    ClientLeft      =   60
  6.    ClientTop       =   345
  7.    ClientWidth     =   4680
  8.    LinkTopic       =   "Form3"
  9.    ScaleHeight     =   3195
  10.    ScaleWidth      =   4680
  11.    StartUpPosition =   3  'Windows Default
  12.    Begin VB.Label Label1 
  13.       BackColor       =   &H00808080&
  14.       BorderStyle     =   1  'Fixed Single
  15.       Caption         =   "FORM 3"
  16.       BeginProperty Font 
  17.          Name            =   "Tahoma"
  18.          Size            =   48
  19.          Charset         =   0
  20.          Weight          =   400
  21.          Underline       =   0   'False
  22.          Italic          =   0   'False
  23.          Strikethrough   =   0   'False
  24.       EndProperty
  25.       ForeColor       =   &H0000FFFF&
  26.       Height          =   1305
  27.       Left            =   480
  28.       TabIndex        =   0
  29.       Top             =   690
  30.       Width           =   3600
  31.    End
  32. Attribute VB_Name = "Form3"
  33. Attribute VB_GlobalNameSpace = False
  34. Attribute VB_Creatable = False
  35. Attribute VB_PredeclaredId = True
  36. Attribute VB_Exposed = False
  37. Option Explicit
  38. Private Sub Form_Load()
  39.     Dim LTime
  40.     LTime = Timer
  41.     While Timer - LTime < 5
  42.     Wend
  43. End Sub
  44.