Leaked source code of windows server 2003
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.

64 lines
2.4 KiB

  1. /////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Icon
  4. //
  5. // Icon with lowest ID value placed first to ensure application icon
  6. // remains consistent on all systems.
  7. IDI_PHONE ICON DISCARDABLE "phone.ico"
  8. /////////////////////////////////////////////////////////////////////////////
  9. //
  10. // Bitmap
  11. //
  12. IDB_ARROW BITMAP DISCARDABLE "Arrow.bmp"
  13. /////////////////////////////////////////////////////////////////////////////
  14. //
  15. // Dialog
  16. //
  17. PROGRESS DIALOG DISCARDABLE 10, 10, 215, 125
  18. STYLE DS_MODALFRAME | DS_3DLOOK | WS_POPUP | WS_CAPTION | WS_VISIBLE
  19. CLASS "Internet Signup Progress"
  20. CAPTION "Internet Connection Wizard"
  21. FONT 8, "MS Shell Dlg"
  22. BEGIN
  23. ICON IDI_PHONE,IDC_STATIC,5,5,18,20
  24. LTEXT "The Internet Connection Wizard will perform these steps to connect your computer the Internet.",
  25. IDC_INSTRUCT_TEXT,32,5,168,20
  26. CONTROL IDB_ARROW,IDC_PCTARROW1,"Static",SS_BITMAP | NOT WS_VISIBLE,
  27. 32,30,10,12
  28. LTEXT "1.",IDC_ONE_TEXT,48,30,8,12
  29. LTEXT "Set up your computer to connect to the Internet",
  30. IDC_SETUP_TEXT,56,30,144,20
  31. CONTROL IDB_ARROW,IDC_PCTARROW2,"Static",SS_BITMAP,
  32. 32,55,10,12
  33. LTEXT "2.",IDC_TWO_TEXT,48,55,8,12
  34. LTEXT "Help you sign up for an Internet account",IDC_SIGNUP_TEXT,
  35. 56,55,159,16
  36. CONTROL IDB_ARROW,IDC_PCTARROW3,"Static",SS_BITMAP | NOT WS_VISIBLE,
  37. 32,70,10,12
  38. LTEXT "3.",IDC_THREE_TEXT,48,70,8,8
  39. LTEXT "Set up the software you need to use your Internet account",
  40. IDC_REQ_TEXT,56,70,144,20
  41. CONTROL "",IDC_FRAME,"Static",SS_ETCHEDFRAME,8,100,216,1
  42. END
  43. IDD_CHOOSEMODEMNAME DIALOG DISCARDABLE 0, 0, 204, 80
  44. STYLE DS_MODALFRAME | DS_3DLOOK | DS_CENTER | WS_POPUP | WS_VISIBLE |
  45. WS_CAPTION
  46. CAPTION "Choose Modem"
  47. FONT 8, "MS Shell Dlg"
  48. BEGIN
  49. LTEXT "Select a &modem to use for your Internet connection:",
  50. IDC_MODEM_TEXT,12,10,180,8
  51. ICON IDI_PHONE,IDC_STATIC,12,23,18,20
  52. COMBOBOX IDC_MODEM,40,27,155,48,CBS_DROPDOWNLIST | CBS_SORT |
  53. WS_VSCROLL | WS_TABSTOP
  54. DEFPUSHBUTTON "OK",IDC_CMDOK,40,50,50,14
  55. PUSHBUTTON "Cancel",IDC_CMDCANCEL,104,50,50,14
  56. END