home *** CD-ROM | disk | FTP | other *** search
/ C Programming Starter Kit 2.0 / SamsPublishing-CProgrammingStarterKit-v2.0-Win31.iso / bde / sdkqry.pak / QRY_DATA.C < prev    next >
C/C++ Source or Header  |  1997-07-23  |  1KB  |  37 lines

  1. // BDE - (C) Copyright 1994 by Borland International
  2.  
  3. #include "query.h"
  4.  
  5. const char  szAppName[] = "Query";
  6. const char  szDialogName[] = "QueryDlg";
  7. const char  szConnectDialogName[] = "CONNECTDLG";
  8. HWND        hMainWnd;
  9. HINSTANCE   hInst;
  10. WNDPROC     _wpOrigWndProc;
  11. WNDPROC     _wpOrigWndProc1;
  12.  
  13. char far szTblDirectory[DBIMAXPATHLEN+1];
  14. char far szPrivDirectory[DBIMAXPATHLEN+1];
  15.  
  16. // Help text for main dialog box
  17.  
  18. char far szMainHelpText[] =
  19.     "This program demonstrates the query functionality of the"
  20.     " Borland Database Engine. SQL or QBE queries typed in the"
  21.     " query edit box can be run, and the results can be viewed"
  22.     " in the Result window or saved to disk. Also, SQL or QBE"
  23.     " Queries can be loaded from the disk or saved to disk. For"
  24.     " additional information, see the QUERY.TXT file in this"
  25.     " program's directory.";
  26.  
  27. // Help text for connect dialog box
  28.  
  29. char far szConnectHelpText[] =
  30.     "This Connection dialog box lists the aliases that you set up"
  31.     " using IDAPICFG.  A standard database is opened and maintained"
  32.     " by default.  To add remote connections, select the alias you"
  33.     " want to use, enter the password for your account in the Password"
  34.     " edit control, and press Connect.  To remove connections, select"
  35.     " the connection from the Connection list and press Remove.  This"
  36.     " program will maintain up to five database connections.";
  37.