There are several ways you could do this. These two functions could be in separate processes, they could be threads, or you could implement them both in the same thread. Eric Christianson recently committed a modified version of the client library that supports threading.
I think it depends on where the data is coming from. The periodically refreshed variables could be handled using a pgSetIdle handler. If the other text is coming from an file descriptor, you could use pgCustomizeSelect to notify you when data comes in. Quoting Cihan Esen <[EMAIL PROTECTED]>: > > Hi, > > I want to run two applications concurrently.For example, i have a > function > which puts a text on the screen depending on values of some variables, > refreshes the text periodically based on the changes in that > variables. > This must run on background, in the fore ground i have another page like > a > popup window. Is there a way to deal with this?, e.g. having the text > refreshed periodically, while another popup in front of the tex keeps > running. > > Thanks > > > Cihan > > > _______________________________________________ > Pgui-devel mailing list > [EMAIL PROTECTED] > https://lists.sourceforge.net/lists/listinfo/pgui-devel > -- Only you can prevent creeping featurism! _______________________________________________ Pgui-devel mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/pgui-devel
