Advertisement
Guest User

Untitled

a guest
Nov 17th, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. #include "Resource.h"
  2.  
  3.  
  4. #define IDD_DIALOG1 100
  5. #define ID_LTEXT 101
  6. #define IDC_EDIT1 102
  7. #define IDC_EDIT2 103
  8. #define IDC_BUTTON2 104
  9. #define IDC_PB_AKCJA 105
  10. #define IDC_PB_OK 106
  11.  
  12. IDD_DIALOG1 DIALOG 0, 0, 211, 112
  13. STYLE DS_3DLOOK | DS_CENTER | DS_MODALFRAME | DS_FIXEDSYS | WS_VISIBLE | WS_BORDER | WS_CAPTION | WS_DLGFRAME | WS_POPUP | WS_SYSMENU
  14. CAPTION "Dialog"
  15. FONT 8, "Ms Shell Dlg 2"
  16. {
  17. LTEXT "", 101, 8, 8, 223, 25, SS_LEFT
  18. EDITTEXT IDC_EDIT1, 5, 58, 63, 12, ES_AUTOHSCROLL
  19. EDITTEXT IDC_EDIT2, 6, 7, 197, 44, ES_AUTOHSCROLL
  20. PUSHBUTTON "EXIT", IDC_BUTTON2, 134, 92, 37, 15
  21. AUTOCHECKBOX "Zapis do pliku", 1000, 5, 73, 59, 10
  22. PUSHBUTTON "AKCJA", IDC_PB_AKCJA, 79, 93, 35, 14
  23. PUSHBUTTON "ZAPISZ", IDC_PB_OK, 172, 92, 36, 15
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement