It seems to do the trick, thanks...
stan
On Oct 06, 2006 11:02 AM, Stan Busk wrote:
Yes, its has been reported here:
<http://www.realsoftware.com/feedback/viewreport.php?reportid=lxqfjatc
Please vote!
I've added a workaround to the HTMLViewer.IsAvaliable report for
Windows that from my tests works fine and that is:
Add a window property:
- mIsHTMLViewerAvailable As Boolean
On HTMLViewer Open event place:
Sub Open()
Me.LoadURL "about:blank"
End Sub
On HTMLViewer DocumentComplete event place:
Sub DocumentComplete(URL as String)
If Not mIsHTMLViewerAvailable AND URL = "about:blank" Then
mIsHTMLViewerAvailable = True
End If
End Sub
Then use the mIsHTMLViewerAvailable property to check if it's
available or not. I presume this will work fine as the
DocumentComplete event will only fire if the control was loaded.
Note: "about:blank" is a valid URL for IE. Don't know if on MAC this
works fine.
---
I included also a project example with this workaround on the report:
<http://www.realsoftware.com/feedback/viewreport.php?reportid=lxqfjatc
Carlos
[Win2K/XP - 2005r4/2006r4)
_______________________________________________
Unsubscribe or switch delivery mode:
<http://www.realsoftware.com/support/listmanager/>
Search the archives of this list here:
<http://support.realsoftware.com/listarchives/lists.html>
_______________________________________________
Unsubscribe or switch delivery mode:
<http://www.realsoftware.com/support/listmanager/>
Search the archives of this list here:
<http://support.realsoftware.com/listarchives/lists.html>