<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"><channel><category>pcsoft.us.windev</category><copyright>Copyright 2026, PC SOFT</copyright><lastBuildDate>24 Aug 2016 21:08:00 Z</lastBuildDate><pubDate>24 Aug 2016 13:55:00 Z</pubDate><description>Hi All&#13;
&#13;
I have found out why the HTML control is not displaying on a window that is called. In this case it is because it is being called from a procedure with a timer active and is running on its own thread. So here is my situation: I need a procedure with a timer to poll a web service. If there is data on the web service it is read. Let us say three records are found there. I then need to call a window displaying these three records. Calling this window does not display the data and actually causes the app to crash when the window is exited. What would be the best way to detect that data has been collected from the web service and the window must be opened? Hope that makes sense.&#13;
&#13;
Cheers&#13;
André</description><ttl>30</ttl><generator>WEBDEV</generator><language>en_US</language><link>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/59208-call-window-from-procedure-with-timer/read.awp</link><title>Call Window From Procedure With Timer</title><managingEditor>moderateur@pcsoft.fr (El moderador)</managingEditor><webMaster>webmaster@pcsoft.fr (El webmaster)</webMaster><item><author>guest</author><category>pcsoft.us.windev</category><comments>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/59208-call-window-from-procedure-with-timer-59244/read.awp</comments><pubDate>24 Aug 2016 21:08:00 Z</pubDate><description>Hi Alexandre&#13;
&#13;
OK - huge progress here. I am calling the window in the same thread and all is working very well indeed - includ…</description><guid isPermaLink="true">https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/59208-call-window-from-procedure-with-timer-59244/read.awp</guid><link>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/59208-call-window-from-procedure-with-timer-59244/read.awp</link><source url="https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/59208-call-window-from-procedure-with-timer/read.awp">Call Window From Procedure With Timer</source><title>Re: Call Window From Procedure With Timer</title></item><item><author>guest</author><category>pcsoft.us.windev</category><comments>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/59208-call-window-from-procedure-with-timer-59225/read.awp</comments><pubDate>24 Aug 2016 20:29:00 Z</pubDate><description>Hi André,&#13;
&#13;
In a thread, you do the loop yourself. You can be in an infinite loop forever without worry. Just make sure you mak…</description><guid isPermaLink="true">https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/59208-call-window-from-procedure-with-timer-59225/read.awp</guid><link>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/59208-call-window-from-procedure-with-timer-59225/read.awp</link><source url="https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/59208-call-window-from-procedure-with-timer/read.awp">Call Window From Procedure With Timer</source><title>Re: Call Window From Procedure With Timer</title></item><item><author>guest</author><category>pcsoft.us.windev</category><comments>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/59208-call-window-from-procedure-with-timer-59222/read.awp</comments><pubDate>24 Aug 2016 19:59:00 Z</pubDate><description>Hi Curtis&#13;
&#13;
I am stuck on the first step - how do I get my main thread to pool for data without using a procedure with a timer?…</description><guid isPermaLink="true">https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/59208-call-window-from-procedure-with-timer-59222/read.awp</guid><link>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/59208-call-window-from-procedure-with-timer-59222/read.awp</link><source url="https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/59208-call-window-from-procedure-with-timer/read.awp">Call Window From Procedure With Timer</source><title>Re: Call Window From Procedure With Timer</title></item><item><author>guest</author><category>pcsoft.us.windev</category><comments>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/59208-call-window-from-procedure-with-timer-59221/read.awp</comments><pubDate>24 Aug 2016 19:42:00 Z</pubDate><description>Hi Alexandre&#13;
&#13;
Brilliant - I am going to try that right now.&#13;
&#13;
Cheers&#13;
André</description><guid isPermaLink="true">https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/59208-call-window-from-procedure-with-timer-59221/read.awp</guid><link>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/59208-call-window-from-procedure-with-timer-59221/read.awp</link><source url="https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/59208-call-window-from-procedure-with-timer/read.awp">Call Window From Procedure With Timer</source><title>Re: Call Window From Procedure With Timer</title></item><item><author>guest</author><category>pcsoft.us.windev</category><comments>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/59208-call-window-from-procedure-with-timer-59219/read.awp</comments><pubDate>24 Aug 2016 17:20:00 Z</pubDate><description>Hi André,&#13;
&#13;
Do not mix up timers and threads. Just use one or the other. If you use a timer, you are running in the main thread…</description><guid isPermaLink="true">https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/59208-call-window-from-procedure-with-timer-59219/read.awp</guid><link>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/59208-call-window-from-procedure-with-timer-59219/read.awp</link><source url="https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/59208-call-window-from-procedure-with-timer/read.awp">Call Window From Procedure With Timer</source><title>Re: Call Window From Procedure With Timer</title></item><item><author>guest</author><category>pcsoft.us.windev</category><comments>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/59208-call-window-from-procedure-with-timer-59213/read.awp</comments><pubDate>24 Aug 2016 16:26:00 Z</pubDate><description>Hi Alexandre&#13;
&#13;
This is WD. I cannot get it to work. If I call the window fro outside of the procedure with the timer it works a…</description><guid isPermaLink="true">https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/59208-call-window-from-procedure-with-timer-59213/read.awp</guid><link>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/59208-call-window-from-procedure-with-timer-59213/read.awp</link><source url="https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/59208-call-window-from-procedure-with-timer/read.awp">Call Window From Procedure With Timer</source><title>Re: Call Window From Procedure With Timer</title></item><item><author>guest</author><category>pcsoft.us.windev</category><comments>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/59208-call-window-from-procedure-with-timer-59209/read.awp</comments><pubDate>24 Aug 2016 14:27:00 Z</pubDate><description>Hi André,&#13;
&#13;
Are you in WB or WD?&#13;
&#13;
It should work all right in all cases. You could even use a thread to pool and get the data…</description><guid isPermaLink="true">https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/59208-call-window-from-procedure-with-timer-59209/read.awp</guid><link>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/59208-call-window-from-procedure-with-timer-59209/read.awp</link><source url="https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/59208-call-window-from-procedure-with-timer/read.awp">Call Window From Procedure With Timer</source><title>Re: Call Window From Procedure With Timer</title></item></channel></rss>
