Changes

Windows Registry VB6

726 bytes added, 13:20, 2 February 2008
The following lines were added (+) and removed (-):
Code Example: Private Sub Form_Load()  Me.Left = GetSetting(App.Title, "Settings", "MainLeft", 1000)  Me.Top = GetSetting(App.Title, "Settings", "MainTop", 1000)  Me.Width = GetSetting(App.Title, "Settings", "MainWidth", 6500)  Me.Height = GetSetting(App.Title, "Settings", "MainHeight", 6500) End Sub Private Sub Form_Unload(Cancel As Integer)  If Me.WindowState <> vbMinimized Then    SaveSetting App.Title, "Settings", "MainLeft", Me.Left    SaveSetting App.Title, "Settings", "MainTop", Me.Top    SaveSetting App.Title, "Settings", "MainWidth", Me.Width    SaveSetting App.Title, "Settings", "MainHeight", Me.Height  End If End Sub&nbsp;== Advanced Windows 32 Base API DLL (advapi32.dll) ==
Bureaucrat, administrator
16,192
edits