Hello!
I have a little problem. I have to print a table (four columns from an Excel file) in a text box. I took a string and I kept appending all the cells from the file that interested me and I used the textbox provided by easygui.
textbox(msg='', title=' ', text='', codebox=0)
Here are my problems:
1.I want to format the text to look like one piece. The text looks like this:
TimeStamp Ipv Upv-Ist Power
6.15 0.0 293.92 0.0
6.30 0.0 315.21 0.0
6.45 0.11757 272.14 31.9954998
7.00 0.19193 283.44 54.4006392
7.15 0.25029 292.55 73.2223395
7.30 0.30235 301.25 91.0829375
7.45 0.35982 320.71 115.3978722
8.00 0.75405 313.93 236.7189165
8.15 1.12258 316.05 354.791409
8.30 1.5482 314.7 487.21854
and I want it to be more nicely arranged (every line to be in it`s place). How can I do that?
2. Is there any way to convert it to read only? Normally the user is able to modify the text but I want it to be read only.
I`m interested if this things are possible using the textbox provided by easygui or I have to modify it and use something else (tkinter etc.).
Thanks!