Mike Copeland wrote on 2012-11-15: 
>  I've got a nagging problem that I've beat my head against for
>  years...maybe the collective brain of ProFox will provide the a clue to
>  a solution.
>  
>  I have a form that contains an instance of the IE OLE Control
>  (_webbrowser4 from the _webview.vcx library). Nothing odd, just a simple
>  form and a "Shell.Explorer.2" OleClass on it, named "web".
>  

Mike,

You have this:
DO WHILE (Thisform.web.OBJECT.Busy OR Thisform.web.OBJECT.ReadyState <> 
4) AND (SECONDS() - lnSeconds) < 30
         DOEVENTS
ENDDO

This is how I prevented it:

DO WHILE THISFORM.oIE.Busy OR TYPE("THISFORM.oIE.Document.Body") <> "O"
   DOEVENTS 
   =INKEY(.1)
ENDDO

Tracy Pearson
PowerChurch Software


_______________________________________________
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/profox
OT-free version of this list: http://mail.leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message: 
http://leafe.com/archives/byMID/profox/000301cdc366$a53f6c10$efbe4430$@powerchurch.com
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.

Reply via email to