home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 2000 July / DPPCPRO0700.ISO / xtras / Invoice / _SETUP.1 / HELPDEFS.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  2000-01-03  |  1.3 KB  |  44 lines

  1. {=====================================================================
  2.   Copyright 1993-1996 by Teletech Systems, Inc. All rights reserved
  3.  
  4.  
  5. This source code may not be distributed in part or as a whole without
  6. express written permission from Teletech Systems.
  7. =====================================================================}
  8. unit HelpDefs;
  9. interface
  10.  
  11.  
  12.  
  13. { To add help to your application, add the statement
  14.   
  15.   Application.Helpfile := 'INVOICE.hlp';
  16.   
  17.   to your project startup file (*.DPR).
  18.   
  19.   [F1] key help will work automatically, if you allowed HelpWriter to 
  20.   update your code. }
  21. {=====================================================================
  22.  List of Context IDs for <INVOICE>
  23.  =====================================================================}
  24.  const
  25.       Hlp_Invoice_Creator = 10;    {Main Help Window}
  26.       Hlp_THE_MAIN = 20;    {Main Help Window}
  27.       Hlp_NEW_CUSTOMER = 30;    {Main Help Window}
  28.       Hlp_AUTO_INVOICE = 40;    {Main Help Window}
  29.       Hlp_INVOICE_SCREEN = 50;    {Main Help Window}
  30.       Hlp_PRODUCT_CODE = 60;    {Main Help Window}
  31.       Hlp_Print_Preview = 70;    {Main Help Window}
  32.  {Glossary definitions}
  33.       GLOS_record_button =  80;
  34.       GLOS_NxA =  90;
  35.       GLOS_checked =  100;
  36.       GLOS_PRINT_BUTTON =  110;
  37.       GLOS_ButtonBar =  120;
  38.  
  39.  
  40. implementation
  41.  
  42. end.
  43.  
  44.