home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / netds / sna / tpsetup / install.rc < prev    next >
Text File  |  1997-04-09  |  2KB  |  53 lines

  1. #include <windows.h>
  2. #include "install.h"
  3.  
  4. STRINGTABLE
  5. BEGIN
  6.     IDS_REGISTRYPATH, "SYSTEM\\CurrentControlSet\\Services\\"
  7.     IDS_REGISTRYPATH_WIN95, "Software\\Microsoft"
  8.     IDS_UNKNOWN,      "An unknown error has occured.\015Error code: %u"
  9.     IDS_ERRORTITLE,   "Installation Error"
  10.     IDS_CREATEFAILED, "Unable to register service."
  11.     IDS_OPENSCMFAILED,"Unable to open Service Control Manager."
  12.     IDS_LOCKFAILED,   "Unable to acquire lock on registry."
  13.     IDS_OPENKEYFAILED,"Unable to open a key in the registry."
  14.     IDS_SETKEYFAILED, "Unable to set a key's value in the registry."
  15.     IDS_INIWRITEFAILED, "Unable to write to WIN.INI."
  16.     IDS_BADPATHNAME,  "You must fill in the \042Command line\042 field."
  17.     IDS_BADTPNAME,    "You must fill in the TP Name field."
  18.     IDS_SERVICEEXISTS,"This TP has already been installed.\015Either delete it from the registry or choose a new name."
  19.     IDS_BADTIMEOUT,   "You have left the Timeout field blank.\015If you specify a finite timeout, you must fill in this field with a number."
  20.     IDS_NOMESSAGE,    "This text for this message is missing."
  21.     IDS_INFOTITLE,    "Installation Notice"
  22.     IDS_SUCCESS,      "Installation is complete."
  23.     IDS_NOUSERNAME,   "You must specify a username."
  24.     IDS_NOPASSWORD,   "You must specify a password."
  25.     IDS_OUTOFMEMORY,  "Out of memory.\015Please free some memory and try again."
  26.     IDS_REGISTRYAPPLPATH, "SYSTEM\\CurrentControlSet\\Services\\SnaBase\\Parameters\\TPs\\"
  27.     IDS_REGISTRYAPPLPATH_WIN95, "Software\\Microsoft\\Snabase\\Parameters\\TPs\\"
  28.     IDS_REPLACECAPTION, "TP Name Already Exists"
  29.     IDS_REPLACETEXT,    "An Invokable TP has already been installed with this TP name.\n\nDo you want to overwrite the existing settings ?"
  30.  END
  31.  
  32. USERDLG DIALOG 126, 90, 198, 45
  33. STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION
  34. CAPTION "User Information"
  35. FONT 8, "MS Sans Serif"
  36. BEGIN
  37.     EDITTEXT        IDE_USERNAME, 54, 7, 76, 12, ES_AUTOHSCROLL | WS_GROUP
  38.     EDITTEXT        IDE_PASSWORD, 54, 24, 76, 12, ES_AUTOHSCROLL
  39.     LTEXT           "&Username:", 103, 7, 7, 36, 8
  40.     LTEXT           "&Password:", IDT_PASSWDTEXT, 7, 25, 35, 8
  41.     DEFPUSHBUTTON   "OK", IDOK, 143, 6, 51, 14, WS_GROUP
  42.     PUSHBUTTON      "Cancel", IDCANCEL, 143, 23, 51, 14, WS_GROUP
  43. END
  44.  
  45. #ifdef WIN32
  46. #include "ntmain.dlg"
  47. #else
  48. #include "winmain.dlg"
  49. #endif
  50.  
  51.  
  52. 
  53.