home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Programmer's Library 1.3 / Microsoft-Programers-Library-v1.3.iso / sampcode / win_lrn / spawn / childfp.rc < prev    next >
Encoding:
Text File  |  1988-08-11  |  900 b   |  26 lines

  1. #include <windows.h>
  2. #include  "Childfp.h"
  3.  
  4.  
  5. ChildFp MENU
  6.     BEGIN
  7.         POPUP "&Choose Point"
  8.             BEGIN
  9.                 MENUITEM "&Chose a Random Point",           IDM_CHOOSERANDOM
  10.                 MENUITEM "&Enter Point Coordinates",        IDM_CHOOSE
  11.             END                                
  12.         MENUITEM "\a&Help"                                  IDM_HELP  HELP
  13.     END
  14.  
  15. EnterPointDlg DIALOG LOADONCALL MOVEABLE DISCARDABLE 13, 14, 104, 58
  16. STYLE WS_DLGFRAME | WS_POPUP
  17. BEGIN
  18.      LTEXT "Enter Coordinates",     -1,    2,  4, 76, 10
  19.      LTEXT "x",                     -1,   26, 14,  4, 10
  20.      LTEXT "y",                     -1,   77, 14,  4, 10
  21.      EDITTEXT             IDD_X,           2, 24, 49, 12, ES_AUTOHSCROLL
  22.      EDITTEXT             IDD_Y,          53, 24, 49, 12, ES_AUTOHSCROLL
  23.      DEFPUSHBUTTON "&OK", IDOK,           27, 40, 50, 14, WS_GROUP
  24. END
  25.  
  26.