Guest User

Untitled

a guest
Nov 19th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. #!/usr/bin/python
  2. # -*- coding: utf-8 -*-
  3.  
  4. ### Import Module
  5. from Tkinter import *
  6. import tkMessageBox
  7. from prog_control import end
  8.  
  9. # Programmparameter
  10. from prog_param import BREAKTITEL, BREAKINFO
  11.  
  12.  
  13. def info_func():
  14. root = Tk()
  15. InfoFenster = tkMessageBox.showinfo(BREAKTITEL, BREAKINFO)
  16. if InfoFenster == 'ok':
  17. sys.exit(1)
  18. root.destroy()
  19.  
  20. if __name__ == "__main__":
  21. info_func()
Add Comment
Please, Sign In to add comment