im wating for a webbrowser to retrieve a page..
im usingthis code would be fine in vb 6, but DoEvents no longer exists (not declared??).. what do i use instead?Code:Do: DoEvents: Loop until wb.Busy = False
Printable View
im wating for a webbrowser to retrieve a page..
im usingthis code would be fine in vb 6, but DoEvents no longer exists (not declared??).. what do i use instead?Code:Do: DoEvents: Loop until wb.Busy = False
a) You should post in the VB.NET section of the site.
b) You should use threading instead of using DoEvents.
c) You should search the site. A search in the VB.NET section for DoEvents led me to here: http://www.vbforums.com/showthread.p...light=doevents (Application.DoEvents())
DoEvents is still there , it's hidden under Application Object :
VB Code:
Application.DoEvents()
and btw , why do you keep posting VB.NET related in VB6 section ? ;)