home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / cntrform / frmcntr.frm (.txt) next >
Encoding:
Visual Basic Form  |  1995-06-11  |  855 b   |  30 lines

  1. VERSION 2.00
  2. Begin Form frmCntr 
  3.    BackColor       =   &H8000000F&
  4.    Caption         =   "Center Form"
  5.    ClientHeight    =   3615
  6.    ClientLeft      =   2730
  7.    ClientTop       =   1485
  8.    ClientWidth     =   5730
  9.    Height          =   4020
  10.    Left            =   2670
  11.    LinkTopic       =   "Form1"
  12.    ScaleHeight     =   3615
  13.    ScaleWidth      =   5730
  14.    Top             =   1140
  15.    Width           =   5850
  16.    Begin Label lblCntr 
  17.       BackColor       =   &H8000000F&
  18.       Caption         =   "Form is Centered"
  19.       Height          =   195
  20.       Left            =   2205
  21.       TabIndex        =   0
  22.       Top             =   1560
  23.       Width           =   1440
  24.    End
  25. Sub Form_Load ()
  26.     'Center form on screen.
  27.     Left = (Screen.Width - Width) \ 2
  28.     Top = (Screen.Height - Height) \ 2
  29. End Sub
  30.