home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / vbinst13 / vbwait.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1995-12-05  |  901 b   |  32 lines

  1. VERSION 2.00
  2. Begin Form wait 
  3.    BorderStyle     =   1  'Fixed Single
  4.    ClientHeight    =   0
  5.    ClientLeft      =   2655
  6.    ClientTop       =   2715
  7.    ClientWidth     =   4335
  8.    ControlBox      =   0   'False
  9.    Height          =   405
  10.    Icon            =   0
  11.    Left            =   2595
  12.    LinkMode        =   1  'Source
  13.    LinkTopic       =   "Form1"
  14.    MaxButton       =   0   'False
  15.    MinButton       =   0   'False
  16.    ScaleHeight     =   0
  17.    ScaleMode       =   3  'Pixel
  18.    ScaleWidth      =   289
  19.    Top             =   2370
  20.    Width           =   4455
  21. Sub Form_Load ()
  22.     ' Center on the screen
  23.     '
  24.      Move (Screen.Width - Width) \ 2, (Screen.Height - Height) \ 2
  25.     'Show Wait form
  26.     Screen.MousePointer = 11
  27.     Wait.caption = "Install Program Now Loading.....Wait..."
  28.     Wait.Show
  29.     install.Show
  30.     Screen.MousePointer = 0
  31. End Sub
  32.