home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic 4 Unleashed / Visual_Basic_4_Unleashed_SAMS_Publishing_1995.iso / crystal / extras / crpedemo / frmhelp.frm < prev    next >
Text File  |  1994-12-14  |  1KB  |  44 lines

  1. VERSION 2.00
  2. Begin Form frmHelp 
  3.    BorderStyle     =   1  'Fixed Single
  4.    Caption         =   "Form1"
  5.    ClientHeight    =   5820
  6.    ClientLeft      =   3675
  7.    ClientTop       =   3000
  8.    ClientWidth     =   7365
  9.    ControlBox      =   0   'False
  10.    Height          =   6225
  11.    Left            =   3615
  12.    LinkTopic       =   "Form1"
  13.    MaxButton       =   0   'False
  14.    MinButton       =   0   'False
  15.    ScaleHeight     =   5820
  16.    ScaleWidth      =   7365
  17.    Top             =   2655
  18.    Width           =   7485
  19.    Begin Label Label1 
  20.       AutoSize        =   -1  'True
  21.       Caption         =   "Label1"
  22.       Height          =   195
  23.       Left            =   210
  24.       TabIndex        =   0
  25.       Top             =   495
  26.       Width           =   585
  27.    End
  28. End
  29.  
  30. Sub Form_Load ()
  31.       ' Get rid of the forms Caption so title bar does not display:
  32.        Me.Caption = ""
  33.  
  34.        ' Give the form and label a light yellow background:
  35.        Me.BackColor = &H80FFFF
  36.        Label1.BackColor = &H80FFFF
  37.  
  38.        ' Inset label by 1 pixel:
  39.        Label1.Left = 1 * Screen.TwipsPerPixelX
  40.        Label1.Top = 0
  41.   
  42. End Sub
  43.  
  44.