home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form Form1
- Caption = "Created by Zac Gery"
- ClientHeight = 3195
- ClientLeft = 60
- ClientTop = 345
- ClientWidth = 4680
- LinkTopic = "Form1"
- ScaleHeight = 3195
- ScaleWidth = 4680
- StartUpPosition = 3 'Windows Default
- Begin VB.Label Label2
- Caption = "On a side note you can also modify this code to save other info to the registry."
- Height = 855
- Left = 960
- TabIndex = 1
- Top = 1440
- Width = 2655
- End
- Begin VB.Label Label1
- 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."
- Height = 855
- Left = 960
- TabIndex = 0
- Top = 480
- Width = 2535
- End
- Attribute VB_Name = "Form1"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub Form_Load()
- LoadWindowPos Me
- End Sub
- Private Sub Form_Unload(Cancel As Integer)
- SaveWindowPos Me
- End Sub
-