Python Forum
Which GUI can have indefinite loop ?
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Which GUI can have indefinite loop ?
#6
(Nov-15-2023, 07:17 PM)deanhystad Wrote: I am not going to click on that link.

Sounds like you want to periodically update displays to show information you get from MetaTrader. You probably want to use a thread to get the MetaTrader information. You don't want the GUI to be unresponsive while this happens. You'll also need a way for the MetaTrader thread to tell the application it is time to update displays. The MetaTrader thread cannot do this itself, so it will have to set a signal flag (semaphore) that the GUI will periodically check (using the .after() method).
Yes. But it's constantly not periodically. The GUI is for displaying the data from the loop. That's exactly what I was thinking too, using the thread for getting the data.

Can .after() be set in milisecond ? So it updates almost realtime, not delayed.
Reply


Messages In This Thread
Which GUI can have indefinite loop ? - by jst - Nov-15-2023, 06:53 PM
RE: Which GUI can have indefinite loop ? - by jst - Nov-15-2023, 07:10 PM
RE: Which GUI can have indefinite loop ? - by jst - Nov-15-2023, 07:42 PM
RE: Which GUI can have indefinite loop ? - by jst - Nov-15-2023, 09:20 PM
RE: Which GUI can have indefinite loop ? - by jst - Nov-15-2023, 09:23 PM
RE: Which GUI can have indefinite loop ? - by jst - Nov-15-2023, 09:37 PM
RE: Which GUI can have indefinite loop ? - by jst - Nov-16-2023, 05:28 AM
RE: Which GUI can have indefinite loop ? - by jst - Nov-16-2023, 07:32 AM
RE: Which GUI can have indefinite loop ? - by jst - Nov-16-2023, 08:41 AM
RE: Which GUI can have indefinite loop ? - by jst - Nov-16-2023, 09:35 AM
RE: Which GUI can have indefinite loop ? - by jst - Nov-16-2023, 08:01 PM
RE: Which GUI can have indefinite loop ? - by jst - Nov-16-2023, 10:23 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Init an indefinite number of class MathisDELAGE 9 3,892 Feb-18-2022, 07:49 PM
Last Post: deanhystad
  Indefinite loop ( I think ) marsh20 2 2,768 Aug-20-2020, 12:33 PM
Last Post: deanhystad
  indefinite loop Johnygo 3 2,945 Jul-03-2019, 12:53 PM
Last Post: Johnygo

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020