*-- Common include file #INCLUDE "INCLUDES\FOXPRO.H" #INCLUDE "INCLUDES\STRINGS.H" #DEFINE DEBUGMODE .F. *-- Put in application name to use for ini file name #DEFINE INIFILE "Tracker.INI" #DEFINE CRLF CHR(13) + CHR(10) #DEFINE CR CHR(13) #DEFINE TAB CHR(9) #DEFINE CURRENCY "$" #DEFINE AERRORARRAY 7 *-- These constants are used in formbase to *-- indicate the status of the current alias #DEFINE FILE_OK 0 #DEFINE FILE_BOF 1 #DEFINE FILE_EOF 2 #DEFINE FILE_CANCEL 3 *-- Constants to identify which trigger failed *-- using element 5 of the array returned by *-- AERROR(), as well as to reference the appropriate *-- array element in the error message array: aErrorMsg[] #DEFINE INSERTTRIG 1 #DEFINE UPDATETRIG 2 #DEFINE DELETETRIG 3 *-- Constants used to read the system registry #DEFINE HKEY_LOCAL_MACHINE -2147483646 #DEFINE KEY_SHARED_TOOLS_LOCATION "Software\Microsoft\Shared Tools Location" #DEFINE KEY_NTCURRENTVERSION "Software\Microsoft\Windows NT\CurrentVersion" #DEFINE KEY_WIN4CURRENTVERSION "Software\Microsoft\Windows\CurrentVersion" #DEFINE KEY_WIN4_MSINFO "Software\Microsoft\Shared Tools\MSInfo" #DEFINE KEY_QUERY_VALUE 1 #DEFINE ERROR_SUCCESS 0