' Copyright ⌐ 1994 by Computer Technologies, Inc. All rights reserved.
Global Const KEY_TAB = &H9
Global Const KEY_ALT = &H12
Global Const SC_TASKLIST = &HF130
Global Const WM_COMMAND = &H111
Global Const WM_SYSCOMMAND = &H112
Global Const WM_SYSKEYDOWN = &H104
Global Const WM_SYSKEYUP = &H105
Global Const WM_LBUTTONDBLCLK = &H203
Global Const MF_BYCOMMAND = &H0
Global Const MF_APPEND = &H100
Global Const MF_SEPARATOR = &H800
Global Const MF_ENABLED = &H0
Global Const MF_STRING = &H0
Global Const MB_ICONINFORMATION = 64
Global Const IDM_ABOUT = 108
Global gnDesktopHwnd As Integer
Declare Function APIGetDesktopHwnd Lib "User" Alias "GetDesktopHwnd" () As Integer
Declare Function APIGetDesktopWindow Lib "User" Alias "GetDesktopWindow" () As Integer
Declare Function APIGetSystemMenu Lib "User" Alias "GetSystemMenu" (ByVal hWnd As Integer, ByVal bRevert As Integer) As Integer
Declare Function APIDeleteMenu Lib "User" Alias "DeleteMenu" (ByVal hMenu As Integer, ByVal nPosition As Integer, ByVal wFlags As Integer) As Integer
Declare Function APIAppendMenu Lib "User" Alias "AppendMenu" (ByVal hMenu As Integer, ByVal wFlags As Integer, ByVal wIDNewItem As Integer, ByVal lpNewItem As Any) As Integer
Declare Function APIShowWindow Lib "User" Alias "ShowWindow" (ByVal hWnd As Integer, ByVal nCmdShow As Integer) As Integer
Declare Function APIFindWindow Lib "User" Alias "FindWindow" (ByVal lpClassName As Any, ByVal lpWindowName As Any) As Integer
Declare Function APIArrangeIconicWindows Lib "User" Alias "ArrangeIconicWindows" (ByVal hWnd As Integer) As Integer
Declare Function APIGetPrivateProfileString Lib "Kernel" Alias "GetPrivateProfileString" (ByVal lpAppName As String, ByVal lpKeyName As Any, ByVal lpDefault As String, ByVal lpReturnedString As String, ByVal nSize As Integer, ByVal lpFileName As String) As Integer
Sub APP_About ()
' Copyright ⌐ 1994 by Computer Technologies, Inc. All rights reserved.
Dim tTempStr As String
Dim tCRLF As String
tCRLF = Chr$(13) & Chr$(10)
tTempStr = "Copyright ⌐ 1994 by Computer Technologies, Inc." & tCRLF & "All rights reserved."
tTempStr = tTempStr & tCRLF & tCRLF & "Version 1.0 - Released October 11, 1994."
tTempStr = tTempStr & tCRLF & tCRLF & "This demo program and all associated code is the property of Computer Technologies, Inc. It is provided as a service for the personal use of the members of the MS-BASIC forum on CompuServe, and other interested Visual Basic developers."