Problem using window.showModalDialog in  Internet Explorer7

hi,
can any one tell me the issues related with <b>window.showModalDialog</b> and Internet Explore 7 as i am getting error when i am trying to log out a page where i am using ShowModalDialog
Thanks

Hi Abhai,
Please find the reg file searching "ie6sp2" in google. Download  and apply it on your computer and  then try to see <b>window.showModalDialog</b> .I think reg file should fix your problem.
Regards,

Similar Messages

  • Issue in FF v 3.6.10: I have a page which have more than 20 link, clicking on these link opens up a popup using window.showModalDialog, for the first 20 popup opens up without any prob but for the 21st n more click it block the popup and do not open.

    Issue in FF v 3.6.10: I have a web page which have more than 20 link, clicking on each of these link opens up a pop-up using window.showModalDialog, for the first consecutive 20 popup opens up without any prob but for the 21st n more click it block the popup and do not open. This is m problem, the real user on the web page can click on more than 20 link in such a scenario it may create problem, please help

    Your above posted system details show outdated plugin(s) with known security and stability risks.
    *Shockwave Flash 9.0 r999
    Update the [[Managing the Flash plugin|Flash]] plugin to the latest version.
    *http://www.adobe.com/software/flash/about/
    In Firefox 3.6 and later versions you need the Next-Generation Java™ Plug-In present in Java 6 U10 and later (Linux: libnpjp2.so; Windows: npjp2.dll).
    http://java.com/en/download/faq/firefox_newplugin.xml
    See also http://java.sun.com/javase/6/webnotes/install/jre/manual-plugin-install-linux.html

  • CSV link doesn't work with popup created using window.showModalDialog

    From a data maintenance page, I allow users to view an audit trail of changes in a window which pops up using the window.showModalDialog method.
    In the popup page I have a download to CSV file link. When the link is clicked nothing happens.
    If I change the method to window.open the CSV link works fine.
    Any ideas?

    Thank you so much for your suggestions.
    I selected Convert RoboHelp Edited topics to HTML in both projects and recompiled them.
    I tested with Firefox 3.6 and 5.0.1 with the same maddening result: None of the linked topics popped up. Text pop-ups and See Also links continue to work. Everything works in Internet Explorer.
    The errors continue to be the same ones: "Permission dennied to access property 'whname'" and "Permission denied to access property 'document'".
    My next step is to test it from a server, but that, of course, requires others to assist.
    Have you heard of such a problem before? Do you have any other suggestions?

  • Problems using window.close() and setting fields

    Hi,
    I have two problems:
    First one is:
    I created a simple JSP with 'Save' and 'Exit' Buttons. In the Exit button on click event I invoked a function closeWindow, which calls teh window.close(). But on clicking Exit, the window does not close. Can anyone please tell me why.
    Second one is:
    The JSP also needs to get loaded with some values in the Textfields. Theses values are extracted from a text field using a Java class. I am able to see that these values are extracted from the text file and are loaded into Java vars, but when I am trying to set this value into a text field, it is NOT getting set.
    (filePathDetails is the instance of the class that extracts the text values)
    The entire code is posted below:
    <%@ page language="java" import="ftpScheduler.*" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%>
    <% FolderPathInfo filePathDetails = new FolderPathInfo(); %>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
    <title>PATH DETAILS</title>
        <SCRIPT type="text/javascript">
         function setPaths(){
              with(document.pathDetails){
                   textAncPath1.value = <%=filePathDetails.localDirPath1 %>;
                   textAncPath2.value = <%=filePathDetails.localDirPath2 %>;
                   textArchivePath.value = <%=filePathDetails.archiveDirPath %>;
                   textLogPath.value = <%=filePathDetails.logFilePath %>;
         function closeWindow(){
              window.closeWindow();
        </SCRIPT>
    </head>
    <body bgcolor="#c0c0c0" onload="setPaths()">
         <FORM name="pathDetails" method="get" action="DetailsServlet.java">
         <FONT face="Arial" size="3"><STRONG>Directory Paths:</STRONG></FONT>
           <BR><BR>
           <TABLE border="0" cellspacing="" height="60" width="450"
                                                        style="FONT-SIZE: 10pt; FONT-FAMILY: Arial" align="center">
           <COLGROUP>
           <COL width="45%">
           <COL width="55%">
           </COLGROUP>
           <TR>
           <TD><LABEL>Ancillary Transmit Path1 :</LABEL></TD>
           <TD><INPUT type="text" name="textAncPath1" width="290" maxlength="350"/></TD>
           </TR>
           <TR>
           <TD><LABEL>Ancillary Transmit Path2 :</LABEL></TD>
           <TD><INPUT type="text" name="textAncPath2" width="290" maxlength="350"/></TD>
           </TR>
           <TR>
           <TD><LABEL>Archive Path :</LABEL></TD>
           <TD><INPUT type="text" name="textArchivePath" width="290" maxlength="350"/></TD>
           </TR>
           <TR>
           <TD><LABEL>Log File Path :</LABEL></TD>
           <TD><INPUT type="text" name="textLogPath" width="290" maxlength="350"/></TD>
           </TR>
           </TABLE>
           <P align="center">
              <INPUT type="submit" name="buttonSave" value="Save">
              <INPUT type="button" name="buttonExit" value=" Exit " onclick="closeWindow()">
              <BR>
           </P>
           </FORM>
    </body>
    </html>Please help me.
    Thanks in advance.

    Try the following..
    For problem 1:
    Use window.close() instead of window.closeWindow().
    For the second problem
    don't call the function setPaths() at onload. Rather
    call the function after the page is loaded. You can
    try like this.
    If it doesn't work then check whether the browser is
    giving any JavaScript error message.
    <SCRIPT type="text/javascript">
    setPaths() ;
         function setPaths(){
         alert(document.pathDetails.element[0].value);
    document.pathDetails.element[0].value =
    = <%=filePathDetails.localDirPath1 %>;
              alert(document.pathDetails.element[0].value);
              with(document.pathDetails){
    textAncPath1.value =
    e = <%=filePathDetails.localDirPath1 %>;
    textAncPath2.value =
    e = <%=filePathDetails.localDirPath2 %>;
    textArchivePath.value =
    e = <%=filePathDetails.archiveDirPath %>;
    textLogPath.value = <%=filePathDetails.logFilePath
    ath %>;
         function closeWindow(){
              window.closeWindow();
    </SCRIPT>Hi,
    Actually I did try window.close(), but I still am not able to close the current window.
    And as for the problem of setting up the field values, sorry the given solution doesnt seem to work. :-(..
    I have pasted the entire code, I dont know where teh flaw is. Please review the same and let me know.
    Your help is very much appreciated.
    <%@ page language="java" import="ftpScheduler.*" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%>
    <% FolderPathInfo filePathDetails = new FolderPathInfo();%>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
    <title>PATH DETAILS</title>
         <SCRIPT type="text/javascript">
         function setPaths(){
              document.pathDetails.textAncPath1.value = "Anything";
              with(document.pathDetails){
                   textAncPath1.value = <%=filePathDetails.localDirPath1%>;
                   textAncPath2.value = <%=filePathDetails.localDirPath2%>;
                   textArchivePath.value = <%=filePathDetails.archiveDirPath%>;
                   textLogPath.value = <%=filePathDetails.logFilePath%>;
         function exitWindow(){
              window.close();
        </SCRIPT>
    </head>
    <body bgcolor="#c0c0c0">
         <FORM name="pathDetails" method="get" action="/FTPSchedulerApp/ftpScheduler/DetailsServlet.java">
         <FONT face="Arial" size="3"><STRONG>Directory Paths:</STRONG></FONT>
           <BR><BR>
           <TABLE name="tempTable" border="0" cellspacing="" height="60" width="450" style="FONT-SIZE: 10pt; FONT-FAMILY: Arial" align="center">
           <COLGROUP>
           <COL width="45%">
           <COL width="55%">
           </COLGROUP>
           <TR>
           <TD><LABEL>Ancillary Transmit Path1 :</LABEL></TD>
           <TD><INPUT type="text" name="textAncPath1" width="290" maxlength="350"/></TD>
           </TR>
           <TR>
           <TD><LABEL>Ancillary Transmit Path2 :</LABEL></TD>
           <TD><INPUT type="text" name="textAncPath2" width="290" maxlength="350"/></TD>
           </TR>
           <TR>
           <TD><LABEL>Archive Path :</LABEL></TD>
           <TD><INPUT type="text" name="textArchivePath" width="290" maxlength="350"/></TD>
           </TR>
           <TR>
           <TD><LABEL>Log File Path :</LABEL></TD>
           <TD><INPUT type="text" name="textLogPath" width="290" maxlength="350"/></TD>
           </TR>
           </TABLE>
           <div align="center">
              <INPUT type="submit" name="buttonSave" value="Save"/>
              <input type="reset" name="buttonReset" value="Reset" onclick="setPaths()"/>
              <button name="buttonExit" onclick="exitWindow()"> Exit </button>
              <BR>
           </div>
           </FORM>
    </body>
    </html>

  • Problems using windows media player to transfer files to zen x

    All 9gs of my music is stored in windows media player music library.transferring it to zen xtra has caused many cds arriving at player with wrong content under different artists and some songs copied many times over. Is there a known conflict using windows player and zen xtra?I would use mediasource but my cds imported to ther interface with many not identified even thogh all my music was clearly labeled with artist, title and gnere in windows music library.Any help would be great. I cant get my 9gs of music into the zen without content mess u
    ps.
    thanks matt

    I, for one, am incredibly dissapointed in the portable file aspect of this player. i work in a PC store and we sell the Zen Touch , i also received one for christmas. At first i was very happy that i could also use it to carry my files to and from school but all my hopes were extinguished when i realized that the computers i would transfering to and from had to have the creative software installed. Obviously, Creative's target consumers are of the Student generation, so they must have known that we, as students , use computer labs in school. So why not add the firmware to override the creative software when transfering data files? What's written on the box and the sales pitch creative uses is extreamly misguided and alot of the buyers have come back to the store with complaints. They arn't happy, i'm not happy, creative should fix this porblem, and yes it is a problem and not "part of the design".

  • Problem using Windows Media Player 10 to put music on my Muvo V

    <FONT face=Century size=3>Please Help
    I hvae just bought a Creative Muvo V200 GB. I have tried using Windows Media Player 0 to load songs onto it. It goes through the motions and syncs ok and when I check 'removable' on Windows Media it shows that the songs are on there. However when I turn the MP3 Player on it registers 'no music'
    I tried wiping the player by downloading the firmware and starting from scratch but still get the same problem.
    Just don't like the layout of Creative so would really appreciate some advice on how to fix Windows Media.
    Thank You
    Eilish

    Eilish wrote:
    <FONT face=Century size=3>Please Help
    I hvae just bought a Creative Muvo V200 GB. I have tried using Windows Media Player 0 to load songs onto it. It goes through the motions and syncs ok and when I check 'removable' on Windows Media it shows that the songs are on there. However when I turn the MP3 Player on it registers 'no music'
    I tried wiping the player by downloading the firmware and starting from scratch but still get the same problem.
    Just don't like the layout of Creative so would really appreciate some advice on how to fix Windows Media.
    Thank You
    Eilish
    Thanks for that piece of information. Player is definitely working as I have about 20 songs on it through realplayer.
    Put a folder of new songs on desktop and a shortcut to my Muvo V200 but when I try to drag and drop it won't let me. All songs on the Muvo are in the root folder. Am I doing it the proper way? I'm afraid I'm a bit moronic when it comes to computers so if you can be patient perhaps you might like to send it again to me idiot speak.
    Really appreciate it
    Eilish

  • Ms-6309 v1.0: USB problem using Windows XP

    Hello!
    I have CELERON 950 with msi ms-6309 v1.0 motherboard. Bios version: 1.9.
    I'm using Windows XP. I cann't plugin any USB device such as mouse or flash drive, because while plugining operation system is freezing. I cann't do
    nothing. The only way is to reset by button.  
    How to solve this
    problem?
    Thank you!

    Installation of the following drivers and updates has not solved a problem:
    SP1 for Windows XP
    VIA 4-in-1 from http://www.viaarena.com
    USB 1.10 Filter Patch from http://www.viaarena.com
    spec of the machine:
    Motherboard: msi ms-6309 v1.0
    cpu: celeron 950 MHz (bios tetect  as 1GHz)
    memory: 320mb
    video: ATI Radeon 9000 Pro
    Bios version: 1.9
    OS: Windows XP RUSSIAN
    If device plugged  before loading system - the device works normally (i can work with my flash drive).
    With Windows 98, Windows 2000 - USB works normally.

  • I have installed latest update for itunes but it will not install and I receive a message Apple Mobile device failed to start. I have uninstalled and reinstalled itunes but have the same problem. I am using windows 7 and internet explorer

    I have downloaded the latest Itunes update, but it will not install and I receive a message 'apple mobile device failed to start'. I have uninstalled and reinstalled itunes but still have the same problem!

    Hi there willjay3976,
    You may find the troubleshooting steps in the article below helpful.
    iTunes 11.1.4 for Windows: Unable to install or open
    http://support.apple.com/kb/TS5376
    -Griff W. 

  • Problem with WIndows 7 and Internet Explorer 11

    I have Windows 7 Pro and just completed installing Service Pack 1.  I checked the the System information and it indicates that the Service Pack did in fact install.  I am now trying to install the latest version of Windows Explorer 11 and when
    I try, I get a message that states "Operating System is not Supported" "you need Windows 7 SP1 or Server 2008 R2 SP1 to install Internet Explorer 11.
     I have worked on this problem for about six hours.  Reinstalled Service Pack 1 and anything else I can think of.  I can't get Internet Explorer 11 to install.  I use GMail and it is advising me that I need to upgrade to the lates version
    Internet Explorer.
    Can anyone give me some advice?

    Which version of Internet Explorer are you currently running? And how are you trying to install IE 11?
    Although there are standalone installers for IE, it's usually best if you can install it through Windows Update. From memory I think IE 11 can only be installed on top of IE 9 or 10. 
    Please can you open Windows Update, and click Check for updates. Once this has finished checking, look in both Important and Optional updates, and see if an updated version of IE appears.
    Regards,
    James Henderson
    MTA: Windows Server Admin Fundamentals
    MTA: Networking Fundamentals

  • Nokia Lumia 530 backup problem (Using Windows 8.1)

    My phone has suddenly stopped backing up, even though it keeps telling me it hasn't been backed up for some time, and needs to be backed up. When I tell it to back up, it gets to about 99%, and then I get the message "there was a problem backing up your settings. Try again later."  What exactly does "later" mean? I've been trying at various times of the day every day for about 4-5 weeks now. From what I've read on the internet, this does appear to be quite a widespread problem.
    Other things I have tried:
    Turning the phone off and back on again.
    Unchecking the "Apps back up" button
    Uchecking the "Settings back up" button
    Checking both backup buttons again
    Deleting previous back ups using my phone
    Logging into One Drive on my laptop and manually deleting previous backups
    Changing the screen time out on my phone to 15 minutes (as opposed to 1 minute)
    Making sure I have a good phone and wifi signal, and having the phone plugged into the charger
    None of this has had any effect!!!!
    The strange thing is that when I go onto One Drive, it tells me that it did back up (I've only got the one phone, so there's no chance I'm getting confused between phones.)
    Please does anyone have any advice? Also, is there a way of telling my phone to automatically back up at regular intervals, eg once a week, or once a month, so I don't have to keep thinking about it?
    Thank you for reading all this!

    Hi, TulaTheQuang. Have you tried rebooting your phone by pressing the power and volume down keys simultaneously for 10-15 seconds? Also, check if all system apps on your phone are up to date. Go to Settings> applications> store> check for updates. Check if you will be able to successfully backup your files. 
    We'll wait for your response. 

  • Scanner problems using windows 8 and canon pixma mx432. printer is set up but wont scan

    I have my printer installed on my computer already but the scanning function is not even coming up to be able to use it. I recently was given a new computer and it has windows 8 on it. it took a lot to get it to even be installed on the computer but the scanner portion won't work. When I bring it up it has the section where the scanner should be but nothing is there to push. What can I do to get this function working correctly?

    All the drivers for 4350D and MF4690 and a few more models I owned in a few more offices have the scanner bug in the drivers for Windows 8. No new drivers been released to fix the problem all those scanners I owned have. Now Canon just put the Windows 8_Notice_ENG inside the driver package and includes the [Limitations During Operation] that says:
    When using the scan function while the device is connected to a computer by USB, removing the USB cable and then
    plugging it back in or turning the device off and then on will cause the scanning function to be unable to execute. If this
    occurs, please restart the computer.
    Seriously, Canon? Restart the computer everytime it doesn't work, and I have to go through the hazzle saving all the files I am working on just to restart to get the scanner to work? I have tried to mod the newer drivers for MF4770n and a few new models to make it work with those 4350D 4690 models, it will then detect the scanner without restart, but the scanner won't produce a readale image using my modified drivers. Now stick with VM Player running Windows 7 to scan the files with those old scanners. I won't buy another Canon scanners for my future needs if Canon just can't fix the Windows 8 driver problems all those scanners I owned.

  • Elements 7 problem using Windows 7

    I have been running Elements 12 on Windows 7 for a month without any problem. I also use Nik  Software suite plug-in.  Yesterday on opening and clicking on Photo Editor  within seconds a message box appears 'Photoshop Elements 12 Elements 12 Editor has stopped working.  A problem caused the program to stop working correctly. Windows will close the program and notify you if a solution is available'.   No solution has been notified and I doubt that I would understand it!  I have performed System Restore.  I am still receiving the same message.
    Organizer appears to open without problem, but I do not use it.

    I located the relevant folder and file on the C drive.
    Holding the three keys down and double-clicking etc as instructed produced
    no response. However, double-clicking before pressing and holding the three
    keys did produce the prompt. I deleted the settings as required.
    Unfortunately after I opened PSE Editor there was a delay of about 5
    seconds before the error message returned and Windows closed the program.
    So no further progress. I await your further advice!

  • Correction - Elements 12 problem using Windows 7

    I have been running Elements 12 on Windows 7 for a month without any problem. I also use Nik  Software suite plug-in.  Yesterday on opening and clicking on Photo Editor  within seconds a message box appears 'Photoshop Elements 12 Elements 12 Editor has stopped working.  A problem caused the program to stop working correctly. Windows will close the program and notify you if a solution is available'.   No solution has been notified and I doubt that I would understand it!  I have performed System Restore.  I am still receiving the same message.
    Organizer appears to open without problem, but I do not use it.
    Apologies for the error in the title of the previous attempt!

    I located the relevant folder and file on the C drive.
    Holding the three keys down and double-clicking etc as instructed produced
    no response. However, double-clicking before pressing and holding the three
    keys did produce the prompt. I deleted the settings as required.
    Unfortunately after I opened PSE Editor there was a delay of about 5
    seconds before the error message returned and Windows closed the program.
    So no further progress. I await your further advice!

  • Problem Using (windows-ASP) websites

    Please Help!
    I am a new MAC user. I have been trying to access (and post listings) to an ASP (Windows) site. Their listing page doesn't allow me to type, and it doesn't recognize my fonts. I was told by the program developer of the site that I need to go to Apple.com and download something called V3 (so I can communicate with ASP). I have looked everywhere on the site and can't figure it out. Can anyone please help?
    powerbook g4   Mac OS X (10.4.1)  

    Hi, thank you for the response.
    I am trying to post items for sale at:
    http://bidhound.com
    Everything is OK until I get to the description. The site doesn't accept anyhting I type. It works fine from a PC. I can use Classic (Internet Explorer 5 - which came with my PowerBook, but I have to use html. And...as you know, IE 5 is SO horribly outdated and it is difficult to look at. Any other suggestions?

  • When I attempt to download a Adobe PDF document I get a plackard saying "There was an error processing a page. There was a problem reading this document (109)." I don't have the problem using Windows Explorer. Can you help?

    I don't have any details other than what I have explained in the question. Have always been able to download Adobe files in the past. Tried Windows Explorer and it worked. Don't like Windows Explorer.

    Using FF 5.0.
    I've encountered this opening the following file:
    * http://download.esha.com/fandc/error/sqlfc.pdf
    The error occurred the first time I tried to open, but subsequent times it has opened fine. A co-worker gets the error everytime when trying to view in his FF 5.0. It has always opened fine in IE for both of us (like the OP meant, I think -- I don't like IE. Not even a little bit!).
    Downloading the file seems fine (opening in Acrobat Reader itself).

Maybe you are looking for

  • How do i delete my icloud from my friends mac ?

    Hello everyone , few weeks ago i logged in with my icloud account on my friends macbook and signed out but now he gets my messages that people send me on my phone.. how do i delete my account from his computer ? im signed in on my macbook with my icl

  • File adapter content conversion

    Hi all,   We are having File to File Scenario   We are facing problem in Content conversion in File   Adapter(Sender)   The source file is in text format and fields are   seperated by '|' character   The source file structure is :   Header|No. of Rec

  • ITunes refuses to 'see' external drive

    All my tunes are on an external LaCie 120GB mobile HDD as they have been for a couple of years and all has worked well. Now for some reason iTunes refuses to 'see' the iTunes Folder on this drive it doesn't even seem to see the drive at all. The driv

  • DIP issue :ActiveChgImp:Error in Mapping EngineODIException: DIP_GEN_INITIA

    Hi, I have configured Sync between AD->OID. I am getting following Error: Trace Log Started at Tue Aug 30 19:06:51 IST 2011 java.lang.NullPointerException at oracle.ldap.odip.engine.ConfigReader.readConfigInfo(ConfigReader.java:264) at oracle.ldap.od

  • Creating attachments from Services for Objects

    Hi, I am trying to create an attachment using the FM BDS_BUSINESSDOCUMENT_CREATEF. But it is giving me sy-subrc 4(ERROR_KPRO). Can anyone explain how to correct this and if u have any better code to attach files to BO's pls post it here. This is my c