Just thought I'd let anyone who cares know
If you are having refresh issues with the content of an HTMLviewer (I
have mulitple overlapping instances on different page panel pages),
then the answer is to set any of the instances that are not showing
to have a width of zero.
ie, in a pagepanels changed event
dim n as integer
for n = 0 to me.controlCount -1
if me.control(n) isa HTMLviewer and HTMLviewer(me.control
(n)).pagepanelIndex <> me.value then
HTMLviewer(me.control(n)).width = 0
else
HTMLviewer(me.control(n)).width = desired width
end
next
Stops all clipping issues.
Thanks,
Tom
_______________________________________________
Unsubscribe or switch delivery mode:
<http://www.realsoftware.com/support/listmanager/>
Search the archives:
<http://support.realsoftware.com/listarchives/lists.html>