Re: waiting for documents created by ajax
Tech-Archive recommends: Fix windows errors by optimizing your registry
Hello:
If you haven't done so already, implement the DWebBrowserEvents2
interface. Then add a handler for the DownloadComplete event which sets
a timer, perhaps for 500 ms. Then add a handler for the DownloadBegin
event which kills the timer set by DownloadComplete, if any. In the
timer handler, check for the presence of the data you're looking for.
If the data is there, kill the timer and work with the data; otherwise,
let the timer keep running.
I hope this helps.
Matt
.
Relevant Pages
- Re: Cant enable a Timer in a Speech Recognized handler
... is set up with an interval and event handler: ... if I try to launch a timer inside the 'recognized speech' handler ... I tried moving this to the Recognition Completed handler of the speech ... But that handler won't launch a timer either. ... (microsoft.public.dotnet.languages.vc) - Re: System.timers.timer in windows service??
... I move the code into the same function in the timer elapsed handler instead ... but no email message is sent and there is not error ... (microsoft.public.dotnet.framework) - Re: Timer Problem with Service
... call Stop on the 'timer' instance in your Elapsed ... | Do you happen to call Stop on the server instance in your Elapsed event ... I'll look into the Exception. ... (microsoft.public.dotnet.languages.csharp) - Re: Cant enable a Timer in a Speech Recognized handler
... The Timer runs fine unless I try to use it in the event handler. ... any running Timer is not effected by the recognition event handler firing, ... and enables the timer. ... (microsoft.public.dotnet.languages.vc) - Re: Timer control
... not just timer events, will be missed. ... This is more accurate but should still not use a handler that takes ... Find great Windows Forms articles in Windows Forms Tips and Tricks ... Is the second tick event ignored? ... (microsoft.public.dotnet.framework.windowsforms.controls) |
|