home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / com / inole2 / chap22 / patron / print.dlg < prev    next >
Text File  |  1995-05-03  |  616b  |  15 lines

  1. IDD_PRINTING DIALOG 10, 20, 128, 60
  2. STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
  3. CAPTION "Patron"
  4. FONT 8, "MS Sans Serif"
  5. BEGIN
  6.     PUSHBUTTON      "Cancel", IDCANCEL, 44, 42, 40, 14
  7.     CTEXT           "Currently printing", ID_NULL, 6, 2, 116, 10
  8.     CTEXT           "Page 1 of 1", ID_CURRENTPAGE, 6, 14, 116, 10
  9.     CTEXT           "Copy 1 of 1", ID_CURRENTCOPY, 6, 26, 116, 10
  10.  
  11.     //These two hold our wsprintf strings conveniently.
  12.     CTEXT           "Page %d of %d", ID_PAGESTRING, 6, -20, 116, 10
  13.     CTEXT           "Copy %d of %d", ID_COPYSTRING, 6, -20, 116, 10
  14. END
  15.