home *** CD-ROM | disk | FTP | other *** search
/ Planet Source Code Jumbo …e CD Visual Basic 1 to 7 / 1_2002.ISO / Data / Zips / CODE_UPLOAD61525272000.psc / Form1.frm (.txt) next >
Encoding:
Visual Basic Form  |  2000-05-27  |  1.3 KB  |  44 lines

  1. VERSION 5.00
  2. Begin VB.Form Form1 
  3.    Caption         =   "Form Title Bar"
  4.    ClientHeight    =   1425
  5.    ClientLeft      =   60
  6.    ClientTop       =   345
  7.    ClientWidth     =   5205
  8.    Icon            =   "Form1.frx":0000
  9.    LinkTopic       =   "Form1"
  10.    MaxButton       =   0   'False
  11.    MinButton       =   0   'False
  12.    ScaleHeight     =   1425
  13.    ScaleWidth      =   5205
  14.    StartUpPosition =   2  'CenterScreen
  15.    Begin VB.Label Label1 
  16.       Alignment       =   2  'Center
  17.       Caption         =   "Vertical gradient"
  18.       BeginProperty Font 
  19.          Name            =   "MS Sans Serif"
  20.          Size            =   18
  21.          Charset         =   0
  22.          Weight          =   700
  23.          Underline       =   0   'False
  24.          Italic          =   0   'False
  25.          Strikethrough   =   0   'False
  26.       EndProperty
  27.       Height          =   795
  28.       Left            =   120
  29.       TabIndex        =   0
  30.       Top             =   360
  31.       Width           =   4935
  32.    End
  33. Attribute VB_Name = "Form1"
  34. Attribute VB_GlobalNameSpace = False
  35. Attribute VB_Creatable = False
  36. Attribute VB_PredeclaredId = True
  37. Attribute VB_Exposed = False
  38. Private Sub Form_Load()
  39.     GradientForm Me
  40. End Sub
  41. Private Sub Form_Unload(Cancel As Integer)
  42.     GradientReleaseForm Me
  43. End Sub
  44.