Part of a pop-up window appears off-screen in Internet Explorer 8

The system is current with Windows Updates. I have applied the registry edit as specified here.
FEATURE_FORCE_POPUPS_ONTO_MONITOR_KB974537
Didn't fix it.
Help?
Thanks.

Hi,
Thanks for posting in Microsoft TechNet forums.
As this thread has been quiet for a while, we assume that the issue has been resolved. At this time, we will mark
it as ‘Answered’ as the previous steps should be helpful for many similar scenarios. If the issue still persists, please feel free to  reply this post directly so we will be notified to follow it up. You can also choose to unmark the answer
as you wish.
BTW,  we’d love to hear your feedback about the solution. By sharing your experience you can help other
community members facing similar problems. Thanks for your understanding and efforts.
Best Regards
Magon Liu
TechNet Subscriber Support
in forum. If you have any feedback on our support, please contact
[email protected]
Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread. ”

Similar Messages

  • Adobe Illustrator cc my open file and save dialog windows appear off screen

    How do I fix this?

    Figured it out. on a MAC holding down cmd-option-shift + Q did the job after logging back in.

  • I can't download the new version of iTunes.  Halfway through the installation a pop up window appears saying "There is a problem with this Windows installer package. A program run as a part of the set up did not finish as expected. Contact your support pe

    I can't download the new version of iTunes.  Halfway through the installation a pop up window appears saying, "There is a problem with this Windows installer package. A program run as a part of a set up did not finish as expected. Contact your support personnel or package vendor.

    Got exact same problem, was told to delete all old apple, quick time and bonjoir from computer then it would work. I use a programme called malware bytes and this takes everthing out of your computer right down to the roots but unfortunately I still have same problem

  • A pop-up window appears after log-in and disappears very fast

    Hello,
    There is an annoying pop-up window appearing in the center of my screen, after each log-in to my account.
    It dissappears ultra-quickly after showing up and I'm not physically able to see what it's about. I can't even take a screenshot.
    I wonder whether there is a respective .log file or an event viewer, in order to check what this might be and why it's appearing.
    I opened up the Logs folder, but I didn't find something useful. Activity Monitor also didn't help.
    In Login Iterms, there is only iTunesHelper app, and it has never caused any kind of problem before.
    All of my settings haven't been changed since last three weeks, and this is happening for only three days now.
    There is only one account on MBP (OS X 10.8.5). If further information is needed, I'll try to provide them.
    Thanks in advance.

    Try setting up another admin user account to see if the same problem continues. If Back-to-My Mac is selected in System Preferences, the Guest account will not work. The intent is to see if it is specific to one account or a system wide problem. This account can be deleted later.
    Isolating an issue by using another user account

  • I would like to create a pop-up window appear from Labview Interface. In this window, I will have a slide control and an image taken from a camera. The main VI have to run while pop-up window is open. How can I do ?

    When I pushed a button, this pop-up window has to appear. There will be a slide control and a picture from a camera in this window. Is it possible to make appear this windows while main VI Interface continue to run ? How can I do this ? Thank you for your answers.
    Cyril.

    Here you go. This is simple example. Maybe not the best way, I am just
    beginner in LV and still not comfortable with data flow that much. I prefer
    events, so I would change this to use Event Structures.
    When you click on OK button on SliderMain, it opens Slider.vi. Now both
    windows are open and you can interact with both. Now if you click on OK
    again with Slider.vi open, you run into problems. Only thing I did was
    change VI properties of slider.vi, mainly window appearance.
    vishi
    "Cy" wrote in message
    news:[email protected]..
    > I would like to create a pop-up window appear from Labview Interface.
    > In this window, I will have a slide control and an image taken from a
    > camera. The main VI hav
    e to run while pop-up window is open. How can I
    > do ?
    >
    > When I pushed a button, this pop-up window has to appear. There will
    > be a slide control and a picture from a camera in this window. Is it
    > possible to make appear this windows while main VI Interface continue
    > to run ? How can I do this ? Thank you for your answers.
    > Cyril.
    [Attachment SliderMain.vi, see below]
    [Attachment Slider.vi, see below]
    Attachments:
    SliderMain.vi ‏16 KB
    Slider.vi ‏11 KB

  • I keep having a pop us window appear after opening firefox. Can you help?

    a pop up window appears after I open firefox. It reads: (with yellow triangle and exclamation point)
    YSLOW.firefox.observer.observe()[Exception... "Component returned failure code: 0x80004001 (NS_ERROR_NOT_IMPLEMENTED) [nsILoadGroup.groupObserver]" nsresult: "0x80004001 (NS_ERROR_NOT_IMPLEMENTED)" location: "JS frame :: chrome://yslow/content/yslow-firefox-net.js :: anonymous :: line 172" data: no]
    == This happened ==
    Every time Firefox opened

    A modal pop-up from a website code usually looks different from pop-ups from an extension that can have a real title bar.
    Can you attach a screenshot?
    *http://en.wikipedia.org/wiki/Screenshot
    *https://support.mozilla.org/kb/how-do-i-create-screenshot-my-problem
    Use a compressed image type like PNG or JPG to save the screenshot and make sure that you do not exceed the maximum file size (1 MB).
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • Pop up window on Logon Screen

    Hi All,
    I would like to create a pop up window on Logon Screen. But my page is not found. Am I missing something?
    [A class="link_sub_menu" href="#" onClick="javascript:window.open(<b>'forgotmypassword.jsp,</b> '_blank', 'width=350,height=200,location=no,resizable=no');"]Forgot my password
    [/A]
    Tks,
    Alcides Flach
    Message was edited by:
            Alcides Flach

    hi,
    try this.
    data : WF_RES type c.
    CALL FUNCTION 'POPUP_TO_CONFIRM_STEP'
                EXPORTING
                 DEFAULTOPTION        = 'N'
              TEXTLINE1            = 'Do you want to delete the record?'
    *           TEXTLINE2            = ' '
                  TITEL                = 'Delete Zone'
    *           START_COLUMN         = 25
    *           START_ROW            = 6
    *           CANCEL_DISPLAY       = 'X'
               IMPORTING
                 ANSWER               = WF_RES.
    if wf_res = 'J'.
    user selected 'YES'.
    else.
    user selected 'NO'.
    endif.
    Rgds
    anver

  • When Safari is in full screen, the window slides off screen to the right after a short period of time.  How do I fix this?

    When Safari is in full screen, window slides off screen to the right after a few seconds.  Does not happen if Safari is not full screen.  How do I fix this?

    You are probably inadvertently swiping to another full-screen app. Are you using a magic trackpad? Does this happen without you touching anything?

  • SQL Management Studio -- Windows open off-screen!

    I used to have three monitors hooked up to this computer, now I only have two. Most applications don't have any problem with this, except SQL Management Studio which keeps opening windows off the right-hand side of the screen which are impossible to move back on-screen! All I can do is right-click the window in the taskbar, then choose "maximize" to temporarily work with the window. (I don't want the window maximized, but that's the only way to make it visible!) Import/Export data wizard window does this, as does the "add new users to DB" window.
    How do I reset window locations in SQL Management Studio? This is getting extremely annoying. And please, please fix this bug! It's the year 2007, your program should be able to cope with multiple monitors! (Imagine how many laptop users who hot-swap monitors all the time are running into this.)
    Thanks in advance.

     Buck Woody - MSFT wrote:
    I'm sorry if I gave the immpression that you couldn't move your screen around - and I did look into the bug. I would never knowingly lie to anyone. Once again, I apologize for the misunderstanding.
    Microsoft has looked into the bug, and in fact, we've done a lot of work on the mulitple monitor support in SQL Server 2008, as I mentioned in my post. You should see an improvement there.
    - Buck
    Your last reply on this thread was telling me that, and I quote: "SSMS has no notion of monitors - it just uses whatever Windows says are there. If you will remove the monitor from the video card settings then SSMS will not show the screens on something that does not exist." Which is incorrect, as my screenshot in the next post proved. Normally when people make a claim, and it's refuted, they respond in some fashion.
    The annoyance is that it took a full year (and an irate post from me) for you to respond to that screenshot, and it still seems like you're unclear about the issue. It has nothing at all to do with "I can't move my screen around". Let's review the repro instructions one more time:
    1) Start with a computer running Windows XP Pro and three monitors plugged in, arranged in a horizontal line. The center monitor is the default.
    2) Open SSMS. Maximize it in the left-most monitor.
    3) In the Object Browser, select a database, expand "Security", expand "Users", then right-click in the list and select "New User"
    4) Move the New User window to the right-most monitor and maximize it.
    5) Close SSMS, then re-open it and bring up the New User window again. Notice that SSMS saves the window position so that it continues to open on the right-most monitor. (This is good!)
    6) Now unplug the right-most monitor and restart the computer. Go to the Monitors property sheet to ensure that there are only two monitors listed, and that the right-most (of the two) is still the default monitor.
    7) Open SSMS, then bring up the New User window once more. Notice that the New User window now opens off-screen.
    The irony is that this bug doesn't even apply to me anymore as, after about 6 months, I got my third monitor back. But for those 6 months, I was getting this behavior MANY TIMES A DAY, driving me completely and utterly furious and crazy each time, because it's such a stupid and moronic and easy-to-fix bug. I don't understand how your QA process could possibly have missed windows opening off-screen.
    (Like you suggested, if SSMS actually ensured that windows opened on monitors that actually exist, this whole thing would be a non-issue.)
    I don't know what you mean by "can't move my screen around," as this has nothing to do with moving or repositioning screens. It has to do with a window that opens off-screen, so that it's impossible to use the window without doing one of the ugly hacks outlined in this thread.
    I'm glad SQL Server 2008 has "lots of work on multiple monitor support" and I'd be extremely happy if it did what you <i>claimed</i> SSMS 2005 did a year ago.
    Sorry for the tone. It's so upsetting to me that bugs related to multi-monitor support could exist in a product in use in 2005, after a full decade of Windows supporting multiple-monitors. Isn't this stuff perfected by now? Doesn't Microsoft have any kind of minimal quality control process, and why isn't this on it? It's hard to express how frustrating this is, both the bug and the lack of response to it.

  • Save/Open Window Goes Off Screen Bug

    There's this one particular bug I've been having ever since I upgraded from OS X Maverick to Yosemite. Whenever I open/save a file, whether it's on the web browser or Finder, the open/save window goes off screen. I can still see the window but the bottom portion where you normally have the open, save, new folder and cancel buttons - is all the way at the bottom of the screen.
    I can't scale it to its proper size because the window is buried beneath the Docks. The only way to rescale it is to click the arrow key button near the Save As drop down list but sometimes, this button is not there.
    Does anyone else have this problem? Any idea how to fix it?

    Hello Steve:
    It definitely sounds like the hot corner "all windows" is enabled. There is a preference file that needs to be trashed, but I cannot figure out which one (no help to you).
    Be sure that none of the hot corners are enabled and then restart.
    You might also try resetting PRAM (although I do not think that will do anything).
    Barry

  • Windows failed to apply the Internet Explorer Zonemapping settings - the data was invald (event ID: 1085)

    Hi All,
    I have a large domain and a long list of websites that are trusted using the following group policy setting:
    Administrative Templates > Windows Components > Internet Explorer> Internet Control Panel > Security Page >
    Site to Zone Assignment List
    On all (XP/vista/win7) workstations across the domain I'm getting the following error:
    Log Name:  System
    Source:  Microsoft-Windows-GroupPolicy
    Event ID: 1085
    Task Category: None
    Level: Warning
    Keywords:   Description: Windows failed to apply the Internet Explorer Zonemapping settings. Internet Explorer Zonemapping settings might have its own log file.
    There's nothing either side of this error in the log that shines any more light on the issue.
    I know which group policy object its applying these settings but cant find which of the entries in the site to zone assignment list is causing this issue. I looked in the
    Group Policy/Operational log but all I see is the following entry which says "completed" but is logged as an error:
    After some research I'm guessing that the issue is an incorrect wild-card. This is what my trusted sites list looks like (with names removed of course):
    http://servername.*  
    *.internaldomain.com.au  
    *.domain.com.au  
    *.domain.*  
    *.externaldomain.com  
    *.domain.inernaldomain.com.au  
    *.domain.*  
    *.domain/name.*  
    *.domain.inernaldomain.au*  
    *.domain.com
    Is there something obviously incorrect here?
    Does anyone know where I could find an article that clearly outlines the acceptable wildcard syntax for the
    "Security page\ site to zone assignment list" group policy?  Ive read every forum post, website and blog I could find on the internet but nothing is clear and I wasn't able to find an MS document that steps it out. I've also changed the
    existing list a number of times based on blog posts etc but had no luck.
    **Please Note**
    I dont want to change to a different method or have an intellectual debate re why I would have these sites/wildacrd/policy set. I'm really looking to see what entry is invalid and where the documentation is for this policy setting so i can make sure they are
    always correct in the future. 
    thanks in advance for your time and assistance
    Simone
    PS: I've already read the following posts a number of times:
    I get no data but have identified the GP that is causing the issue:
    A test case for troubleshooting group policy application – Event ID 1085 and 7016 - http://blogs.technet.com/b/askds/archive/2008/08/21/a-test-case-for-troubleshooting-group-policy-application-event-id-1085-and-7016.aspx 
    I dont have any 2 letter domain names:
    Problems Adding Top-Level Domains to Zone Sites List - http://support.microsoft.com/kb/259493
    I tried formatting the list per this article:
    [Solved] The Group Policy client-side extension Internet Explorer Zonemapping failed to execute  - http://daily-it.blogspot.com.au/2008/09/solved-group-policy-client-side.html
    Has no domain wildcard format info:
    Behavior of Site to Zone Assignment List  - http://blogcastrepository.com/blogs/mattbro/archive/2006/09/07/2183.aspx
    Great article, no wildcard data:
    Internet Explorer Policy Settings  - http://technet.microsoft.com/en-us/library/bb457144.aspx
    Internet zonemapping problem: http://social.technet.microsoft.com/Forums/en-US/winserverGP/thread/a8756a27-b562-42ad-8782-87d284e6bcfb/
    Spiceworks Event 1085 (Warning) - http://community.spiceworks.com/windows_event/show/1582-microsoft-windows-grouppolicy-1085
    Event ID 1085 — Application of Group Policy - http://technet.microsoft.com/en-us/library/cc727303%28v=ws.10%29.aspx
    Application of group policy - http://technet.microsoft.com/en-us/library/cc727312%28v=ws.10%29.aspx
    Evt ID 1085 GP client-side extension IE ZoneMapping failed to exec  - http://www.winvistatips.com/evt-id-1085-gp-client-side-extension-ie-zonemapping-failed-exec-t706399.html
    Event 1085 - Internet Explorer Zonemapping - http://www.minasi.com/forum/topic.asp?TOPIC_ID=29206
    EventID.net - http://www.eventid.net/display.asp?eventid=1085&eventno=1412&source=Userenv&phase=1
    Event ID 1085 - Internet Explorer Zonemapping failed to execute - http://www.experts-exchange.com/OS/Microsoft_Operating_Systems/Server/2003_Server/Q_24897522.html
    UPDATE:
    I disabled the original policy and created a new one with only one trusted site address in it. Then I logged into a clean test machine did some testing.What I found after a few hours of testing was; regardless of the site that I have listed in group policy
    The HKCU\Software\Policies\Microsoft\Current version\Internet Settings\Zone Map Key registry entry is
    always updated with that entry on the workstation. So the workstation's registry always updates the key with
    *.sitename.com per the site that I have set in GP
    If I run GPUPDATE /FORCE over and over again, on the same machine, under the same user account, using the same DC I get:
    Failure, Failure, Failure, Success, Success, Success, Failure etc
    I wasn't able to determine any pattern to the failures, I tried stopping some of the processes on that machine but didn't find anything that would make it fail/succeed reliably.
    There is no AV or firewalls installed on my test machine
    Anyone have any more ideas?  I think I might install filemon and try to capture some more data unless there's a better tool?

    Yes, and that's straight from my Microsoft TAM. As long as you include an asterisk inside those site-to-zone mappings, you'll continue to see them. The key is whether or not they're working. In my environment, I've seen complete success using the
    http://*.domain.com, or
    https://*.domain.com, no matter if the site is http://www.domain.com or
    http://milk.does.a.body.good.domain.com. Despite the success, we continue to see the errors. It's much the same as Group Policy Preferences where you can apply a setting once, or repeatedly. If you apply
    something repeatedly and it's already set, lookout for some complaints in the application log. It really is annoying. There's potential to play with the logging levels, but I'll admit that my experience ranks as "novice" in this specific section of group policy.
    This link might get the creative juices flowing:
    http://blogs.technet.com/b/askds/archive/2008/07/18/enabling-group-policy-preferences-debug-logging-using-the-rsat.aspx
    I see you've already read a number of articles including "a test case for troubleshooting those event IDs"... I sympathize with your efforts. I despise warnings and errors that I can't solve or don't want to see, but I've researched a number of them to death
    and found that many are simply "normal". Uggg... I hope this helps, but please take my advice, as with anyone else's out here, with caution. I've seen some crazy recommendations. I saw a recommendation to install SQL on a DHCP server to get failover clustering
    up and running. I hope the guy asking for help didn't listen to that one! : ) - josh

  • Occasionally, when I try to do a Google search, numerous "opening search" pop-up windows appear. I cannot continue typing in my search until I've closed all of these pop-up windows. How do I stop them from EVER popping up again?!

    They are small pop-up windows. When I start entering in keywords to search, ever so often, these things pop-up and not just one. Many of them. Popping one upon another upon another upon another. I cannot enter anything new into the Google search box until I have closed all of these windows. And, commonly, numerous ones of them will pop up again when I enter in the next letter in my search.
    This is what it says in the pop-up box:
    Along the top it says in the light blue margin "Opening search"
    Under the above and in a white box it says:
    "You have chosen to open
    [a Windows symbol] search
    which is a: application/json
    from: https//www.google.com
    Then on the outline of an inner box, it reads "What should Firefox do with this file?" and it gives the following options:
    Open with ["Browse" button]
    DownThemAll!
    Save File [This one is checked as the default]
    Then a check-off box with the text next to it: "Do this automatically for files like this from now on.
    Under that is an "OK" button that is gray and cannot be checked and a "Cancel" button that can be. I have never done either but used the "X" in the upper right corner of the box to close out this window.
    Now I see I have limited options for "This happened" for frequency. It isn't every time Firefox is opened but it is FAR more frequent than "A few times a week". More like several times a day.

    See https://bugs.downthemall.net/ticket/2147
    Google Search Bug
    Reported by: openid:nathan wride Owned by:
    Priority: major Milestone:
    Component: Polish/Usability Version: 2.0.10
    Keywords: Google search instant save bug Cc:
    Operating System: Windows
    Description
    Hi Guys
    I have found a bug/annoying thing that occurs frequently on google. When searching, DTA trys to download the search...
    I'll try to attach a screenshot.
    Attachments
    [https://bugs.downthemall.net/attachment/ticket/2147/Screenshot.png Screenshot.png] Download (113.0 KB) - added by openid:nathan wride 4 weeks ago.
    The screenshot that shows the bug.

  • Search button is non responsive in Safari and no pop up window appearing

    When trying to search for a product in a page on safari, when trying to press the search button is non responsive.
    Before the iOS7 update I would press the search button and a pop up window would appear.
    This no longer happens, any help with this would be fanatstic - Thank you

    Hi Joerg
    did you see NWBC Web GRC v10 WSOD
    The comments in there imply it's an issue with IE8. Have you been able to try a different browser? There is a reference to specific IE8 note
    Regards
    Colleen

  • Since ios 8.02 keep getting pop up saying item cannot be downloaded, done or retry. neither option stops this pop up window. Also screen movement is very herky jerky. I hope Apple can figure out their screw up before I bounce this thing off the wall.

    Why did I ever install ios 8.02. Nothing is right on my ipad. Jerky movement, screen freeze, pop up window telling me unable to download  item ( what item?), wifi connection problems. My next tablet will not be an apple product.

    In general theory, one now has the Edit button for their posts, until someone/anyone Replies to it. I've had Edit available for weeks, as opposed to the old forum's ~ 30 mins.
    That, however, is in theory. I've posted, and immediately seen something that needed editing, only to find NO Replies, yet the Edit button is no longer available, only seconds later. Still, in that same thread, I'd have the Edit button from older posts, to which there had also been no Replies even after several days/weeks. Found one that had to be over a month old, and Edit was still there.
    Do not know the why/how of this behavior. At first, I thought that maybe there WAS a Reply, that "ate" my Edit button, but had not Refreshed on my screen. Refresh still showed no Replies, just no Edit either. In those cases, I just Reply and mention the [Edit].
    Also, it seems that the buttons get very scrambled at times, and Refresh does not always clear that up. I end up clicking where I "think" the right button should be and hope for the best. Seems that when the buttons do bunch up they can appear at random around the page, often three atop one another, and maybe one way the heck out in left-field.
    While I'm on a role, it would be nice to be able to switch between Flattened and Threaded Views on the fly. Each has a use, and having to go to Options and then come back down to the thread is a very slow process. Jive is probably incapable of this, but I can dream.
    Hunt

  • My dialog windows appear off the screen...please help

    Many of my dialog windows such as paragraph styles, or when I place items appear off the screen (I see the bottom of the window, but not the top which means I cannot move them around)  - Any suggestions?
    Laurie

    I am having the same issue.  I am using CS6, and my 'Effects' box is off the screen and unusable.  I have tried resetting the workspace, changing the workspace, restarting the program, rebooting the system, switching between multiple and single monitor....all with no effect.  The dialog box is always in the same place; in the upper left of the screen.  Any further help would be appreciated.
    Mac OS X 10.8.2
    InDesign CS6 with the latest updates
    15" MacBook Pro Retina
    FIXED:  As soon as I posted this, I had a thought.  While that dialog box was active, I went to System Preferences>Displays>Gather Windows.  May or may not work for original poster.

Maybe you are looking for

  • Delivery type relevant to MRP

    Hi Friends When we create Stock transfer order, in MD04  the PO and MRP elements appearing for  both the plants.(supplying and Receiving plant) After creating  Outbound delivery against PO from Supplying plant the PO (Ord.Ds) is not appearing in the

  • What kind of problem? (Unwanted clip splitting when importing)

    I am using an intel iMac (alu 2.4 ghz) and a sony hdr-hc5. Did import almost 2 hours of video in full hd (but not the full pixels quality, I think around 590? dont remember...) The problem is that sometimes (not much just one-two times ) i've got "sp

  • Zooming on a large drawing

    Can someboby, please, help me to manage the zooming of an area of size 30x30 pixels of a large drawing. The drawing contains a number of shapes, but in the code that I will be posting I will be using only one shape. The drawing is made up of more tha

  • Probable iphone 6 virus?

    I downloaded an app called Photo Collage Maker by Kai Xia yesterday and there are in-app advertisements which I accidentally clicked. It led me straight to Safari's browser and there's a pop-up saying that my device has been infected with a button pr

  • Windows 7/Airport Extreme/External HD/MacDrive HELP!

    Hello all, I just upgraded my PC from Vista to Windows 7. I have an Airport Extreme running my home network with a 1TB FreeAgent External Hard Drive connected. When I was using Vista, I used MacDrive to be able to view and access my external on my PC