XP SP2. Has display problem.

G

Guest

Hi Gurus,
We are going to upgrade user system with XP Sp2 but MY Internet
application behaves very differently with sp2.

We have DHTML Menu which opens up as POPUP Menu same as IE File Menu.
We have may ModelessDialog window as part of our application. In previous
version the menu use to open on top of modelessDialog if dialog exist but in
new XP SP2 IE the menus open below the modelessDialog window. We are in the
phase to release the application. Please let me know how can we solve the
above problem.


e.g.

<HTML>
<HEAD>
<TITLE>Popup Custom Navigation Menu Sample</TITLE>
<SCRIPT LANGUAGE="JScript">
//Creating the popup window object
var oPopup = window.createPopup();

function ContextMenu()
{
var lefter = event.offsetY+10;
var topper = event.offsetX+10;
oPopup.document.body.innerHTML = oContextHTML.innerHTML;
//This popup is displayed relative to the body of the document.
oPopup.show(topper, lefter, 200, 65, document.body);
}
var mWin=null;
function openmodel()
{
mWin=window.showModelessDialog();
}

</SCRIPT>

<style type="text/css">
BODY
{
font-family:verdana;
font-size:.8em
}

H1
{
font-size:1.5em;
color:#3366CC;
font-family:tahoma;
}

H2
{
font-size:1.3em;
color:#3366CC;
font-family:tahoma;
}

TD
{
background-color:#e4e4e4;
color:black;
font-family:verdana;
font-size:.8em;
padding:5px;
}
.copyright
{
width:100%;
border-top:1px solid #e4e4e4;
padding-top:10px;
color:#3366CC;
text-decoration:none;
margin-top:5px;
}
A
{
color:#3366CC;
text-decoration:none;
}

A:visited
{
color:#3366CC;
text-decoration:none;
}
A:hover
{
color:#3366CC;
text-decoration:underline;
}
.viewsource
{
font-size:8pt;
background:#e4e4e4;
border:1px solid #e4e4e4;
width:100%;
padding:5px;
margin:5px
}
</style>

</HEAD>

<BODY onContextMenu="ContextMenu(); return false;" onload="openmodel()">
<h1>Creating Custom Context Menus With The Popup Object</h1>
Right click anywhere on the document to see a customized popup navigation
menu.
<DIV ID="oContextHTML" STYLE="display:none;">
<DIV onmouseover="this.style.background='gold';"
onmouseout="this.style.background='#e4e4e4';"
STYLE="font-family:verdana; font-size:70%; height:30px;
background:#e4e4e4; border:1px solid black; padding:4px; cursor:hand ">

<SPAN ONCLICK="parent.location.href='http://msdn.microsoft.com'">
MSDN Web Workshop</SPAN>
</DIV>
<DIV onmouseover="this.style.background='gold'"
onmouseout="this.style.background='#e4e4e4'"
STYLE="font-family:verdana; font-size:70%; height:30px;
background:#e4e4e4; border:1px solid black; padding:4px; cursor:hand;
border-top:0px solid black">
<SPAN ONCLICK="parent.location.href='http://search.microsoft.com'">
Search</SPAN>
</DIV>
</DIV>

<BR><BR>

<A CLASS="clsIncCpyRt"
HREF="http://www.microsoft.com/isapi/gomscom.asp?TARGET=/info/cpyright.htm"
TARGET="_top">© 2001 Microsoft Corporation. All rights reserved. Terms of
use</A>.


</BODY>
</HTML>
 
G

Guest

I am not able to see anything of that sort can you please verify that again
and be more specific and provide more details. I was able to see the popup
over the dialog

Thanks
PraveenM [MSFT]
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top