Just posting this, hope it will help anyone else
while testing this control in VFP i came across, an issue i had long time with windows built-in web browser control ( Shell.Explorer.2 ), at as sometimes it doesn't show anything.
after having the same issue with this control, I decided to get the the bottom of it.
long story short, i have another ActiveX control that suggest in its documentation to set application.autoyield =.f.
it look like this control and so Shell.Explorer.2 works only with application.autoyield =.t. (at lease it is required when you use JavaScript events that update the the page, with application.autoyield =.f. the JS events running on the page is blocked from updating the page)
so now instead of having my application.autoyield =.f. for the whole of my application i only set it to false when activating a form that has that particular control and setting it back to True hen that form lost focus.
so now i fixed the issue with antview and Shell.Explorer.2 at the same time.
hope this will help anyone..
while testing this control in VFP i came across, an issue i had long time with windows built-in web browser control ( Shell.Explorer.2 ), at as sometimes it doesn't show anything.
after having the same issue with this control, I decided to get the the bottom of it.
long story short, i have another ActiveX control that suggest in its documentation to set application.autoyield =.f.
it look like this control and so Shell.Explorer.2 works only with application.autoyield =.t. (at lease it is required when you use JavaScript events that update the the page, with application.autoyield =.f. the JS events running on the page is blocked from updating the page)
so now instead of having my application.autoyield =.f. for the whole of my application i only set it to false when activating a form that has that particular control and setting it back to True hen that form lost focus.
so now i fixed the issue with antview and Shell.Explorer.2 at the same time.
hope this will help anyone..