home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / fcheck1r / form1.frm (.txt) next >
Encoding:
Visual Basic Form  |  1999-08-18  |  1.2 KB  |  39 lines

  1. VERSION 5.00
  2. Begin VB.Form Form1 
  3.    Caption         =   "Created by Zac Gery"
  4.    ClientHeight    =   3195
  5.    ClientLeft      =   60
  6.    ClientTop       =   345
  7.    ClientWidth     =   4680
  8.    LinkTopic       =   "Form1"
  9.    ScaleHeight     =   3195
  10.    ScaleWidth      =   4680
  11.    StartUpPosition =   3  'Windows Default
  12.    Begin VB.Label Label2 
  13.       Caption         =   "On a side note you can also modify this code to save other info to the registry."
  14.       Height          =   855
  15.       Left            =   960
  16.       TabIndex        =   1
  17.       Top             =   1440
  18.       Width           =   2655
  19.    End
  20.    Begin VB.Label Label1 
  21.       Caption         =   "Go ahead move the form and exit.  I bet you that you when you load the program again it will be where you left it."
  22.       Height          =   855
  23.       Left            =   960
  24.       TabIndex        =   0
  25.       Top             =   480
  26.       Width           =   2535
  27.    End
  28. Attribute VB_Name = "Form1"
  29. Attribute VB_GlobalNameSpace = False
  30. Attribute VB_Creatable = False
  31. Attribute VB_PredeclaredId = True
  32. Attribute VB_Exposed = False
  33. Private Sub Form_Load()
  34. LoadWindowPos Me
  35. End Sub
  36. Private Sub Form_Unload(Cancel As Integer)
  37. SaveWindowPos Me
  38. End Sub
  39.