home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / magazine / pctchnqs / 1991 / number6 / pie / pietest.rc < prev    next >
Text File  |  1991-12-09  |  476b  |  20 lines

  1. #include "c:\tpw\owl\windows.h"
  2.  
  3. 100 MENU 
  4. BEGIN
  5.  POPUP "&Menu"
  6.  BEGIN
  7.   MENUITEM "&Test...", 101
  8.  END
  9. END
  10.  
  11. 100 DIALOG 18, 18, 140, 78
  12. CAPTION "Pie Control Test Dialog"
  13. STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION
  14. BEGIN
  15.  CONTROL "Text", 1, "PieCtrl", 0 | WS_CHILD | WS_VISIBLE, 10, 9, 60, 60
  16.  PUSHBUTTON "&Cancel", IDCANCEL, 92, 50, 36, 17, WS_CHILD | WS_VISIBLE | WS_TABSTOP
  17.  LTEXT "Operation in progress...", -1, 88, 16, 45, 26, WS_CHILD | WS_VISIBLE
  18. END
  19.  
  20.