Advertisement
Guest User

Untitled

a guest
Sep 21st, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. $GUI = GUICreate("Verleihsystem", 600, 250, 100, 200, -1, $WS_EX_ACCEPTFILES)
  2. $button1 = GUICtrlCreateButton("Ändern", 10, 170, 70, 20)
  3. $button2 = GUICtrlCreateButton("Neuer Eintrag", 90, 170, 70, 20)
  4.  
  5. If $msg = $button2 Then
  6. $neuE= GUICreate("Neu", 670, 119, 196, 244)
  7. GUISetState(@SW_SHOW)
  8. While 1
  9. $nMsg = GUIGetMsg()
  10. Switch $nMsg
  11. Case $GUI_EVENT_CLOSE
  12. Exit
  13. endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement