A
ari
I have a vb.net program that uses the web browser for display purposes.
I have implemented a type of "tooltip" pop up window that works as
follows:
in the html I have defined:
<SPAN id="1" _tip="" onmouseover="hover(this,'1')"
onmouseout="hoveroff(this,'1')" </SPAN>
[Sorry for the < - if I put the actual text in, google groups gets
unhappy....]
where the hover function does:
function hover(curobj,hotspot_num)
{
if (curobj._tip == "")
{
navigate("genhotspot:" + hotspot_num);
}
if (curobj._tip != "")
{
displayTip(curobj) //displays the popup window
}
}
this calls the BeforeNavigate2 which in turn sets the value of "_tip"
All this works very nicely - EXCEPT if I have the "find" window open
after pressing ^F. It makes the find window disappear. Any body have
any idea why - or better yet - how to make it not do that?
I have implemented a type of "tooltip" pop up window that works as
follows:
in the html I have defined:
<SPAN id="1" _tip="" onmouseover="hover(this,'1')"
onmouseout="hoveroff(this,'1')" </SPAN>
[Sorry for the < - if I put the actual text in, google groups gets
unhappy....]
where the hover function does:
function hover(curobj,hotspot_num)
{
if (curobj._tip == "")
{
navigate("genhotspot:" + hotspot_num);
}
if (curobj._tip != "")
{
displayTip(curobj) //displays the popup window
}
}
this calls the BeforeNavigate2 which in turn sets the value of "_tip"
All this works very nicely - EXCEPT if I have the "find" window open
after pressing ^F. It makes the find window disappear. Any body have
any idea why - or better yet - how to make it not do that?