home *** CD-ROM | disk | FTP | other *** search
/ Cracking 2 / Cracking II..iso / Texty / crackme / PCTRIAL.RC < prev    next >
Encoding:
Text File  |  1999-01-23  |  2.1 KB  |  55 lines

  1. #include <winuser.h>
  2. #define IDI_ICON     0x01L
  3. #define IDC_EDIT2                                       3003
  4. #define IDC_EDIT                                       3000
  5. #define IDC_BUTTON                                     3001
  6. #define IDC_BUTTON2                                    3004
  7. #define IDM_EXIT                                         11
  8. #define IDC_STATIC                                       -1
  9.  
  10. #define IDM_ABOUT                                         2
  11. #define IDD_ABOUT                                     0x04L
  12.  
  13. IDI_ICON ICON "pctrial.ico"
  14.  
  15. MyDialog DIALOG 10, 10, 155, 53
  16. STYLE 0x0004 | DS_CENTER | WS_MINIMIZEBOX | WS_OVERLAPPED | WS_CAPTION |
  17.       WS_SYSMENU | WS_VISIBLE | DS_3DLOOK 
  18. CAPTION "PC trial KeyGen by Bjanes"
  19. CLASS "DLGCLASS"
  20. BEGIN
  21.     EDITTEXT        IDC_EDIT, 26,2,123,10, ES_LEFT
  22.     EDITTEXT        IDC_EDIT2, 26,18,123,10, ES_READONLY
  23.     DEFPUSHBUTTON   "&Get Serial", IDC_BUTTON,53,32,35,9
  24.     LTEXT           "Name:", IDC_STATIC,3,2,20,20
  25.     LTEXT           "Serial:", IDC_STATIC,3,18,20,20
  26. END
  27.  
  28. IDM_ABOUT DIALOG 0, 0, 114, 135
  29. STYLE 0x0004 | DS_CENTER | WS_CAPTION | WS_MINIMIZEBOX |
  30. WS_SYSMENU | WS_VISIBLE | WS_OVERLAPPED | DS_MODALFRAME | DS_3DLOOK
  31. CAPTION "About the KeyGen"
  32. FONT 6, "Ms Sans Serif"
  33. BEGIN
  34.     LTEXT           "PC trial KeyGen", IDC_STATIC,34,5,50,8
  35.     LTEXT           "Written by Bjanes", IDC_STATIC,32,13,55,8
  36.     LTEXT           "Email - BornaJanes@hotmail.com", IDC_STATIC,1,29,110,8
  37.     LTEXT           "Greetings,", IDC_STATIC,4,45,110,8
  38.     LTEXT           "This is my first program created in Win32 Assembly so don't be hard :)  If it has some bugs please mail me! You can also mail me if you have some other questions.", IDC_STATIC,4,53,110,50
  39.     LTEXT           "My thanks goes to:  Eternal Bliss,     The Sandman, Iczelion, Jeff, _ytc...", IDC_STATIC,4,101,110,16
  40.  
  41. DEFPUSHBUTTON   "&OK", IDC_BUTTON2,44,123,17,9
  42. END
  43.  
  44.  
  45. MyMenu  MENU
  46. BEGIN
  47.     POPUP "&File"
  48.     BEGIN
  49.         MENUITEM "A&bout", IDM_ABOUT
  50.         MENUITEM "", , 0x0800 /*MFT_SEPARATOR*/
  51.         MENUITEM "E&xit", IDM_EXIT
  52.     END
  53. END
  54.  
  55.