Advertisement
Guest User

Untitled

a guest
Aug 17th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
AutoIt 1.67 KB | None | 0 0
  1. #include <GUIConstants.au3>
  2. #include <ButtonConstants.au3>
  3. #include <EditConstants.au3>
  4. #include <GUIConstantsEx.au3>
  5. #include <StaticConstants.au3>
  6. #include <WindowsConstants.au3>
  7.  
  8. #Region ### START Koda GUI section ### Form=
  9. $Form1 = GUICreate("Bartowski [Crypter] v1.0 - by William Bartowski", 461, 389, 193, 125, BitOR($WS_POPUP,$WS_CLIPSIBLINGS), $WS_EX_TOOLWINDOW)
  10. $Pic1 = GUICtrlCreatePic("C:\Documents and Settings\oriooon\Meus documentos\Minhas imagens\autoit_fire_wall_1280x1024.jpg", -8, 0, 468, 388, BitOR($SS_NOTIFY,$WS_GROUP,$WS_CLIPSIBLINGS))
  11. $Label1 = GUICtrlCreateLabel("Login", 8, 16, 35, 17)
  12. GUICtrlSetFont(-1, 8, 800, 0, "MS Sans Serif")
  13. GUICtrlSetColor(-1, 0xFFFFFF)
  14. GUICtrlSetBkColor(-1, 0x000000)
  15. $Label2 = GUICtrlCreateLabel("Senha", 8, 56, 40, 17)
  16. GUICtrlSetFont(-1, 8, 800, 0, "MS Sans Serif")
  17. GUICtrlSetColor(-1, 0xFFFFFF)
  18. GUICtrlSetBkColor(-1, 0x000000)
  19. $Input1 = GUICtrlCreateInput("", 56, 8, 169, 21, BitOR($ES_AUTOHSCROLL,$WS_BORDER,$WS_CLIPSIBLINGS), BitOR($WS_EX_CLIENTEDGE,$WS_EX_STATICEDGE))
  20. GUICtrlSetColor(-1, 0xFFFFFF)
  21. GUICtrlSetBkColor(-1, 0x000000)
  22. $Input2 = GUICtrlCreateInput("", 56, 48, 169, 21, BitOR($ES_AUTOHSCROLL,$WS_BORDER,$WS_CLIPSIBLINGS), BitOR($WS_EX_CLIENTEDGE,$WS_EX_STATICEDGE))
  23. GUICtrlSetBkColor(-1, 0x000000)
  24. $Button1 = GUICtrlCreateButton("Logar", 56, 88, 73, 25)
  25. GUICtrlSetCursor (-1, 0)
  26. $Button2 = GUICtrlCreateButton("Fechar", 152, 88, 75, 25, 0)
  27. GUICtrlSetCursor (-1, 0)
  28. $Button3 = GUICtrlCreateButton("Sobre", 8, 352, 75, 25, 0)
  29. GUICtrlSetCursor (-1, 0)
  30. GUISetState(@SW_SHOW)
  31. #EndRegion ### END Koda GUI section ###
  32.  
  33. While 1
  34.     $nMsg = GUIGetMsg()
  35.     Switch $nMsg
  36.         Case $GUI_EVENT_CLOSE
  37.             Exit
  38.  
  39.     EndSwitch
  40. WEnd
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement