Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
987 B

  1. #include "windows.h"
  2. #include "resource.h"
  3. // bitmaps
  4. IDB_BANNER BITMAP DISCARDABLE "banner.bmp"
  5. // string tables
  6. STRINGTABLE DISCARDABLE
  7. BEGIN
  8. IDS_WELCOME "Welcome to the Wizard host"
  9. IDS_WELCOME_SUB "This page is from the executable hosting the wizard page"
  10. IDS_DONE "Were alsmost done with the Wizard Host"
  11. IDS_DONE_SUB "This page is from the executable hosting the wizard page"
  12. END
  13. // dialog defns
  14. IDD_WELCOME DIALOGEX DISCARDABLE 0, 0, 350, 199
  15. STYLE DS_SHELLFONT | WS_CHILD
  16. FONT 8, "MS Shell Dlg", 0, 0, 0x1
  17. BEGIN
  18. LTEXT "Welcome to our example Wizard", IDC_STATIC, 8, 8, 230, 12
  19. LTEXT "To continue, click Next.", IDC_STATIC, 8, 236, 320, 12
  20. END
  21. IDD_DONE DIALOGEX DISCARDABLE 0, 0, 350, 199
  22. STYLE DS_SHELLFONT | WS_CHILD
  23. FONT 8, "MS Shell Dlg", 0, 0, 0x1
  24. BEGIN
  25. LTEXT "Our Wizard is complete!", IDC_STATIC, 8, 8, 230, 12
  26. LTEXT "To close this wizard, click Finish.", IDC_STATIC, 8, 236, 320, 12
  27. END