home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 8 / CDASC08.ISO / VRAC / FONTCDLG.ZIP / FONTCDLG.RC < prev    next >
Text File  |  1992-03-21  |  988b  |  28 lines

  1. /************************************************************************/
  2. /*                FONTCDLG.RC released to the public domain             */
  3. /*                        6/1/92 by Bob Bourbonnais                     */
  4. /*  Feel free to cut and paste into your program without modification   */
  5. /*         The New Static Control is created within the Program.        */
  6. /************************************************************************/
  7.  
  8. //#include <windows.h>
  9. #include "fontcdlg.h"
  10.  
  11. MAINDIALOGMENU MENU
  12. BEGIN
  13.     MENUITEM "Change Font", 103
  14. END
  15.  
  16. Main_Window_Dialog DIALOG 4, 27, 190, 109
  17. CAPTION "Font Common Dialog Example"
  18. MENU MAINDIALOGMENU
  19. STYLE WS_POPUP | WS_CAPTION | WS_SYSMENU | WS_THICKFRAME | WS_MINIMIZEBOX | WS_MAXIMIZEBOX
  20. BEGIN
  21.     PUSHBUTTON "Change Font", IDB_FONT, 11, 79, 78, 20, WS_CHILD | WS_VISIBLE | WS_TABSTOP
  22.     DEFPUSHBUTTON "Exit", IDCANCEL, 103, 79, 78, 20, WS_CHILD | WS_VISIBLE | WS_TABSTOP
  23. END
  24.  
  25.  
  26. FDLG_ICON ICON fontcdlg.ico
  27.  
  28.