On Aug 16, 9:07 pm, Jah_Alarm wrote:
> hi, I've already asked this question but so far the progress has been
> small.
>
> I'm running Tkinter. I have some elements on the screen (Labels, most
> importantly) which content has to be updated every iteration of the
> algorithm run, e.g. "Iteration ="
(Top-post corrected; please don't do that, it makes messages very hard
to read via usenet)
In article
<26c363c8-11d7-49b9-a1c1-251ab5ff9...@p22g2000pre.googlegroups.com>,
Jah_Alarm wrote:
> On Aug 17, 7:19 pm, Eric Brunel
> wrote:
> > You have to call update_idletasks on a Tkinter *widget*,
In MATLAB this command is drawnow, just in case
On Aug 17, 9:49 pm, Jah_Alarm wrote:
> thanks. The thing is, the objects actually get updated without this
> command, but when I run the GUI outside of python shell (i.e. in
> command prompt as python filename.py or compile it to .exe file) the
> ob
thanks. The thing is, the objects actually get updated without this
command, but when I run the GUI outside of python shell (i.e. in
command prompt as python filename.py or compile it to .exe file) the
objects do not get updated. I tried
Label(mainframe,textvariable=var).grid(column=1,row=1).update
In article
<24dc97b3-a8b5-4638-9cf5-a397f1eae...@q16g2000prf.googlegroups.com>,
Jah_Alarm wrote:
> hi, I've already asked this question but so far the progress has been
> small.
>
> I'm running Tkinter. I have some elements on the screen (Labels, most
> importantly) which content has to be upd
On Aug 16, 9:07 pm, Jah_Alarm wrote:
I have some elements on the screen (Labels, most
> importantly) which content has to be updated every iteration of the
> algorithm
The variable type is IntVar()
You would use int_var_name.set(some_number)
--
http://mail.python.org/mailman/listinfo/python-lis
hi, I've already asked this question but so far the progress has been
small.
I'm running Tkinter. I have some elements on the screen (Labels, most
importantly) which content has to be updated every iteration of the
algorithm run, e.g. "Iteration =" [i] for i in range(n), n=100. I'm
using the updat