Guest User

Untitled

a guest
Aug 11th, 2015
275
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. Gui, Add, Picture, x62 y-1 w320 h120 , %A_ScriptDir%\logo.gif
  2. Gui, Add, Picture, x52 y209 w50 h50 , %A_ScriptDir%\lockandkey.png
  3. Gui, Add, Edit, x142 y219 w170 h30 vspeichern, %Fraktion%
  4. Gui, Add, Button, x172 y249 w110 h30 gSave, Speichern
  5. Gui, Add, Button, x172 y279 w110 h30 gWeiter, Weiter
  6. Gui,Color,Black
  7. Gui, Show, x600 y165 h379 w439, DeWitt Binder
  8. Return
  9.  
  10. Save:
  11. GuiControlGet, Fraktion ,, speichern
  12. IniWrite, %Fraktion%, Fraktion.ini, Test, Beispiel
  13.  
  14. IniRead, Fraktion, Fraktion.ini, Test, Beispiel
  15. return
  16.  
  17.  
  18.  
  19. Weiter:
  20. IniRead, Fraktion, %Fraktion%, Fraktion.ini, Test, Beispiel
  21. If(Fraktion == SAPD) {
  22. #include SAPD.ahk
  23. } else {
  24. Gui, 2: Show, x600 y165 h379 w439, Wenn das auf geht funktioniert es
  25. }
  26. Sleep 100
  27. ExitApp
  28. return
Advertisement
Add Comment
Please, Sign In to add comment