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

  1. VERSION 5.00
  2. Begin VB.Form Form2 
  3.    BackColor       =   &H00808080&
  4.    Caption         =   "Form2"
  5.    ClientHeight    =   2685
  6.    ClientLeft      =   60
  7.    ClientTop       =   345
  8.    ClientWidth     =   5505
  9.    LinkTopic       =   "Form2"
  10.    ScaleHeight     =   2685
  11.    ScaleWidth      =   5505
  12.    StartUpPosition =   3  'Windows Default
  13.    Begin VB.Label Label1 
  14.       BorderStyle     =   1  'Fixed Single
  15.       Caption         =   "FORM 2"
  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       =   &H00FF0000&
  26.       Height          =   1245
  27.       Left            =   1035
  28.       TabIndex        =   0
  29.       Top             =   525
  30.       Width           =   3600
  31.    End
  32. Attribute VB_Name = "Form2"
  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.