home *** CD-ROM | disk | FTP | other *** search
- /****************************************************************************
- FILE: SQLPM.RC
-
- PURPOSE: Resource file for SQLPM.EXE, Sample SQL
- application for Presentation Manager
-
- Copyright (C) 1990 Microsoft Corp.
-
- ****************************************************************************/
- #include "os2.h" /* include standard PM header */
- #include "sqlpm.h"
-
- POINTER ID_RESOURCE SQLPM.ICO /* Icon file for test app */
-
- /* This is the description for the About Dialog box */
- DLGTEMPLATE ID_ABOUTSQLDLG
- {
- DIALOG "", 0, 85, 13, 157, 114, , FCF_DLGBORDER
- {
- CTEXT "SQL PM Test Program", -1, 30, 98, 100, 10, WS_VISIBLE | WS_GROUP
- CTEXT "Copyright (c) 1989", -1, 41, 82, 76, 12, WS_VISIBLE
- CTEXT "Microsoft Corp.", -1, 43, 69, 74, 10, WS_VISIBLE
- CONTROL "", -1, 4, 19, 149, 42, WC_STATIC, SS_FGNDFRAME | WS_VISIBLE
- CTEXT "Any technology sufficiently", -1, 19, 48, 118, 8, WS_GROUP | WS_VISIBLE
- CTEXT "advanced is indistingushable", -1, 10, 35, 137, 8, WS_VISIBLE
- CTEXT "from magic - A. C. Clark", -1, 13, 21, 133, 8, WS_VISIBLE
- DEFPUSHBUTTON "OK", DID_OK, 67, 1, 24, 14, WS_TABSTOP | WS_VISIBLE
- }
- }
- /* This is the description for the Select Dialog box */
-
- DLGTEMPLATE ID_SELECTDLG
- {
- DIALOG "", 0, 92, 28, 115, 84, ,FCF_DLGBORDER
- {
- LTEXT "Enter Author Name:", -1, 11, 61, 94, 10, WS_VISIBLE
- ENTRYFIELD "", AUTHORNAME, 14, 46, 83, 8, ES_MARGIN | ES_LEFT | ES_AUTOSCROLL | WS_TABSTOP | WS_VISIBLE
- DEFPUSHBUTTON "OK", DID_OK, 13, 9, 33, 14, WS_TABSTOP | WS_VISIBLE
- PUSHBUTTON "Cancel", DID_CANCEL, 67, 9, 35, 14, WS_TABSTOP | WS_VISIBLE
- }
- }
-
- /* This is the description for the Connect Dialog box */
- DLGTEMPLATE ID_CONNECTDLG
- {
- DIALOG "" 0, 97, 31, 125, 82, , FCF_DLGBORDER
- {
- LTEXT "Enter SQL Server Name:", -1, 7, 65, 108, 10, WS_VISIBLE
- ENTRYFIELD "", SQL_SERVER, 15, 45, 92, 8, ES_MARGIN | ES_AUTOSCROLL | WS_TABSTOP | WS_VISIBLE
- DEFPUSHBUTTON "OK", DID_OK, 11, 9, 34, 14, WS_TABSTOP | WS_VISIBLE
- PUSHBUTTON "Cancel", DID_CANCEL, 67, 9, 35, 14, WS_TABSTOP | WS_VISIBLE
- }
- }
-
- /* This is the description of the main application menu */
- MENU ID_RESOURCE
- {
- MENUITEM "~About", IDM_ABOUTSQL
- MENUITEM "~Connect...", IDM_CONNECT
- MENUITEM "~Select", IDM_SELECT
- }
-