Advertisement
Guest User

Untitled

a guest
Dec 23rd, 2015
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.87 KB | None | 0 0
  1. #   Project Name    :   PyCoder
  2. #   Date            :   23.12.2015
  3. #   Author          :   SymbiSoft
  4. #   Contact         :   stalkernya.1@mail.ru
  5. #   Web             :   http://vk.com/symbisoft
  6. #   Python Ver.     :   2.7
  7.  
  8. # -*- coding: utf-8 -*-
  9.  
  10. from Tkinter import *
  11. from tkMessageBox import *
  12. from PyCoder_py import *
  13. global richText
  14. # -- Do not change. You may experience problems with the design file. #
  15. form1=Tk()
  16. form1.title('PyCoder')
  17. form1.resizable(width=FALSE, height=FALSE)
  18. form1.geometry('400x400+100+100')
  19. # -- Do not change. You may experience problems with the design file. #
  20. # -- Do not change. You may experience problems with the design file. -- #
  21. richTextBox1=Text(font = '{MS Sans Serif} 10')
  22. richTextBox1.place(relx=0.04, rely=0.18, relwidth=0.91, relheight=0.66)
  23. richText=richTextBox1.get('1.0', END)
  24. # -- Do not change. You may experience problems with the design file. -- #
  25. button1=Button(text='Coding', command=button1Click)
  26. button1.place(relx=0.54, rely=0.88, relwidth=0.40, relheight=0.10)
  27.  
  28. form1.mainloop()
  29.  
  30.  
  31. ###################################FILE2##########################################
  32. #   Project Name    :   PyCoder
  33. #   Date            :   23.12.2015
  34. #   Author          :   SymbiSoft
  35. #   Contact         :   stalkernya.1@mail.ru
  36. #   Web             :   http://vk.com/symbisoft
  37. #   Python Ver.     :   2.7
  38.  
  39. # -*- coding: utf-8 -*-
  40.  
  41. from Tkinter import *
  42. from tkMessageBox import *
  43. global richText
  44. # -- Do not change. You may experience problems with the design file. -- #
  45. def radioButton3Click():
  46.    pass
  47.  
  48.  
  49. # -- Do not change. You may experience problems with the design file. -- #
  50. def radioButton2Click():
  51.    pass
  52.  
  53.  
  54. # -- Do not change. You may experience problems with the design file. -- #
  55. def radioButton1Click():
  56.    pass
  57.  
  58.  
  59. # -- Do not change. You may experience problems with the design file. -- #
  60. def button1Click():
  61.    print(richText)
  62.  
  63.  
  64. #Do not change spaces! description page is here#
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement