Duplicate screen windows 8

hi i cant seem to duplicate my screen im running a hp 500 series,vga to monitor and dvi adapter to hdmi going into my second screen which is a samsung tv smart tv,

Hello,
If I understand correctly, you are using a VGA to DVI adapter connected to a DVI to HDMI adapter. Is this correct? If so, I doubt this will work. The signals between VGA and HDMI are very different.
-Chris
I work for HP.
Support Forums are now on your mobile phone: http://m.hp.com/supportforum

Similar Messages

  • After plugging my ipod into my mac mini, my screen split into 2 duplicate screens, one on top of the other. How do i make that go away?

    after plugging my ipod into my mac mini, my screen split into 2 duplicate screens, one on top of the other. How do i make that go away?

    I am not sure about everything, but there is something that may fix some of your problems. Go to System Preferences, and choose the "Universal Access" preference pane. In Universal Access, turn off VoiceOver, Zoom (seeing tab), Sticky Keys, Slow Keys (Keyboard tab), and Mouse Keys (Mouse tab). Make sure the "Enable access for assistive devices" checkbox, which is at the bottom of the preference pane. From there, look at other options and see if they are things you want turned off, or changed from how they are set. If you don't know what different options do, click on the help icon at the bottom left corner of the window. And if you are still baffled, ask here and someone will tell you what it does.
    If you use any of the universal access options or think they could be useful, feel free to leave them on.
    Also, go to the Keyboard and Mouse preference pane, choose the Keyboard Shortcuts tab, and make sure there are no strange keyboard shortcuts set that may interfere with the keys you are having issues with.
    Did you install any new software before this started happening, and if so, how many days before it started happening?
    Let us know if these tips get you anywhere.

  • How do I play a video in full-screen mode on one screen of a dual-screen Windows 7 system without blanking out the other screen?

    How do I play a video in full-screen mode on one screen of a dual-screen Windows 7 system without blanking out the other screen?  Not losing the other screen would be useful as I would like to, for example, monitor my emails whilst watching a video or to work on a project whilst watching an instructional video.
    Note : Resizing a window to fill the screen is not acceptable as it still leaves unsightly borders.

    bump

  • How to go back to the previous selection screen window?

    I have a selection screen and I have a button that calls a basic report and displays it on screen 0. The basic report is displaying however when I push the back button the program exits.
    If I use "set screen 0" and if I press back button, the program goes to the code. It does exit.
    If I use "leave to list processing" and if I press back button, the screen is just stuck on that screen 0 forever.
    What I want is to go back to the selection screen window when I press the back button at the top.
    <b>Pls help. Im a newbie. Thanks people. </b>
    at selection-screen.
    case SY-UCOMM.
      when 'BTN1_PUSH'.            " Calls Plain Report
          set screen 0.
          perform plainreport.
      when 'BTNEXIT_PUSH'.
        leave program.
    endcase."

    Hi Jabbar,
    The reason it is exiting the program is because you are using set screen.
    Try the following instead:
    at selection-screen.
    case SY-UCOMM.
      when 'BTN1_PUSH'.            " Calls Plain Report
           call screen 0.
          perform plainreport.
      when 'BTNEXIT_PUSH'.
        leave program.
    endcase."
    Think of the call screen command as a chain that the program follows and exits the previous. When you say set screen you are leaving the history in the program and it will always go back to the last screen it remembers which is why you were stuck in screen 0.

  • I see only black screen windows when upload pdf documents in safari

    Hi. I see only black screen windows when upload pdf documents in Safari. Also in old version of Safari, and in old System. In some windows, i can save the document, only now i can see this, open from pdf reader. Thank for some info.

    Back up all data.
    In the Finder, select Go ▹ Go to Folder from the menu bar, or press the key combination shift-command-G. Copy the line of text below into the box that opens, and press return:
    /Library/Internet Plug-ins
    From the folder that opens, remove any items that have the letters “PDF” in the name. You may be prompted for your login password. Then quit and relaunch Safari, and test.
    I've seen an unconfirmed report that the "Silverlight" web plugin distributed by Microsoft can also interfere with PDF display in Safari, so you might need to remove it as well, if applicable.
    If you still have the issue, repeat with this line:
    ~/Library/Internet Plug-ins
    If you don’t like the results of this procedure, restore the items from the backup you made before you started. Relaunch Safari again.

  • Full Screen Window on second screen minimizes when windows explorer opens..

    I did implement a full screen window on my second screen (it's a feature needed by my application)
    When I open windows explorer (I'm on windows XP), or when I click in a windows explorer window, the second screen window is minimized, even if explorer pops in the first screen.
    Is there any way to overcome this problem?
    Any help would be appreciated...
    Laurent
    (sample code below)
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.JWindow;
    import java.awt.BorderLayout;
    import java.awt.Dimension;
    import java.awt.GraphicsDevice;
    import java.awt.GraphicsEnvironment;
    import java.awt.Window;
    import javax.swing.JButton;
    import javax.swing.JToggleButton;
    import java.awt.Rectangle;
    import java.awt.GridBagLayout;
    import javax.swing.JLabel;
    public class FullScreenTest {
         private JFrame jFrame = null;  //  @jve:decl-index=0:visual-constraint="94,35"
         private JPanel jContentPane = null;
         private JToggleButton jToggleButton = null;
         private JPanel jFSPanel = null;  //  @jve:decl-index=0:visual-constraint="392,37"
         private JLabel jLabel = null;
         private Window window;
          * This method initializes jFrame     
          * @return javax.swing.JFrame     
         private JFrame getJFrame() {
              if (jFrame == null) {
                   jFrame = new JFrame();
                   jFrame.setSize(new Dimension(474, 105));
                   jFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                   jFrame.setContentPane(getJContentPane());
              return jFrame;
          * This method initializes jContentPane     
          * @return javax.swing.JPanel     
         private JPanel getJContentPane() {
              if (jContentPane == null) {
                   jContentPane = new JPanel();
                   jContentPane.setLayout(null);
                   jContentPane.add(getJToggleButton(), null);
              return jContentPane;
          * This method initializes jToggleButton     
          * @return javax.swing.JToggleButton     
         private JToggleButton getJToggleButton() {
              if (jToggleButton == null) {
                   jToggleButton = new JToggleButton();
                   jToggleButton.setBounds(new Rectangle(50, 23, 360, 28));
                   jToggleButton.setText("Show Full Screen Window on 2nd screen");
                   jToggleButton.addActionListener(new java.awt.event.ActionListener() {
                        public void actionPerformed(java.awt.event.ActionEvent e) {
                             showFullScreenWindow(jToggleButton.isSelected());
              return jToggleButton;
         protected void showFullScreenWindow(boolean b) {
              if(window==null){
                   window = initFullScreenWindow();
              window.setVisible(b);
         private Window initFullScreenWindow() {
              GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment();
              GraphicsDevice[] gds = ge.getScreenDevices();
              GraphicsDevice gd = gds[1];
              JWindow window = new JWindow(gd.getDefaultConfiguration());
              window.setContentPane(getJFSPanel());
              gd.setFullScreenWindow(window);
              return window;
          * This method initializes jFSPanel     
          * @return javax.swing.JPanel     
         private JPanel getJFSPanel() {
              if (jFSPanel == null) {
                   jLabel = new JLabel();
                   jLabel.setBounds(new Rectangle(18, 19, 500, 66));
                   jLabel.setText("Hello ! Now, juste open windows explorer and see what happens...");
                   jFSPanel = new JPanel();
                   jFSPanel.setLayout(null);
                   jFSPanel.setSize(new Dimension(500, 107));
                   jFSPanel.add(jLabel, null);
              return jFSPanel;
          * @param args
         public static void main(String[] args) {
              FullScreenTest me = new FullScreenTest();
              me.getJFrame().setVisible(true);
    }

    I suppose that you have this exception when the second window is initiated...
    Excuse my remark, it may be perfectly stupid : do you have two screens? The full screen window is supposed to show itself on the user's second screen.
    Or maybe the screens are not handled the same way on each computer? (I'm not used at developping applications working on two screens...)
    thanks for your help
    LK

  • How to Increase the Selection screen window length width big....

    How to Increase the Selection screen window length width big....  I cant able to do some enter text... because of the window size it gives error... can anyone help me out this...
    Thanks in advance

    hi,
    Maximum size is fixed for selection-screen.
    Split your text into different lines to fit it.
    Create a text element for your text and write it as comments.
    selection-screen begin of block b3 with frame title text-041.
      selection-screen begin of line.
        parameters : p_all radiobutton group g2 default 'X'.
        selection-screen comment 10(75) text-049.
      selection-screen end of line.
      selection-screen begin of line.
        parameters : p_iloc radiobutton group g2.
        selection-screen comment 10(75) text-050.
      selection-screen end of line.
    selection-screen end of block b3.
    Regards
    Sailaja.

  • IPhone 4s on screened Window Sill on rainy night - BLACK SCREEN, FLASH ON, VIBRATING, how do I revive?

    Lastnight I left my Iphone 4s CHARGING on a screened window sill.
    I wokeup at 8:30 and checked my phone to see that it was completely fine; went back to sleep until 10:30 and woke up to a black screen, flash on, and the phone frequently and randomly vibrating.The phone was not overly drenched. Only a couple raindrops on it, and around it.
    I immediately stuck it in a bag of rice.
    I need solutions! Any help is appreciated!
    How long should I keep it in the bag of rice?
    Is there a way to turn off my phone with a black screen?
    Thank you for your help!

    Just wind it by dryer and then don't try to switch it off because any electrical interchange cause damage. and then put it in a rise bucket. and in few hours it shuld be fine.. or take it to apple store if you are still in Warranty...

  • [SOLVED] Open new Screen windows in current directory?

    GNOME Terminal has been my preferred terminal application for quite some time; lately, however, I have been using xterm and screen.
    In gnome-terminal (and probably in other tabbed terminal apps), opening a new tab (by default) presents the user with a shell (BASH, in my case) opened to the old tab's PWD. If possible, I'd like to have Screen re-create this functionality....
    I've found this page on the subject, but my experimentation with Screen windows (which has shown me that new windows are not started as subshells of the window from which they are created) suggests that the described method will not work.
    Does anyone know of a way to make Screen emulate this bit of gnome-terminal behavior?
    Thanks!
    Edit:
    I just found this information. It seems that issuing the screen command itself (from within Screen) will open a new window in the current directory. As I almost always use the C-a c keybinding to open new windows, I hadn't realized that this works.
    I'm going to attempt to create a keybinding to do what I want. I'll post an update with the results.
    Last edited by ssjlegendx (2008-08-03 01:38:29)

    After looking further into the issue, it seems that the aforementioned keybinding might not be possible. (Explicitly binding C-a c to screen does not alter the normal functioning of that key combination.) Thinking about the situation, it makes sense that Screen cannot know the PWD without getting information from inside the shell (i.e., without being invoked from within the shell).
    To overcome this issue, I added the following to my ~/.bashrc:
    if [ $TERM == "screen" ]; then
    alias s='screen'
    fi
    Though this leaves the behavior of C-a c unaltered, using the alias s seems to be a simple way to achieve the functionality I wanted. (It might even prove useful to have the "option" of creating a window in the original directory via C-a c.)
    Edit:
    I have since modified the above as follows:
    if [[ $TERM =~ screen(.linux)? ]]; then
    alias s='screen'
    fi
    This causes the alias to be set even when running screen from a regular tty (where $TERM is screen.linux).
    Last edited by ssjlegendx (2009-04-22 17:41:28)

  • Obnoxious finder/screen/window behavior -- oh, and crashes

    I'm getting increasingly angry at this Beta release Apple sold us all.
    Am I the only one experiencing random finder crashes? Literally in the MIDDLE of just typing a sentence on a forum I was on this morning, everything stopped. No more typing. I could move the mouse around, but it wouldn't let me click or select anything. I couldn't do anything but force a reboot. I had a similar crash this morning in the middle of drawing a curve in Illustrator, one in the middle of opening a new browser window, and one when opening up a folder from the dock. Yeah, that's FOUR CRASHES in one day. So far.
    Also, when I'm scrolling around in messages, I get all sorts of weird artifacts in the screens -- like polygons shearing in a bad video game, only the polygons are parts of the screen/window I'm in. I also get an occasional pink shadow (square, solid in one corner with a sort of fading gradient toward the opposite corner) popping up from time to time randomly.
    On top of the headache over trying to get Mail to work properly again, I'm now convinced that Apple has rushed an unfinished release out too early.
    (I think they've gone more than just putting Intel inside the Mac -- they've now firmly adopted the Microsoft system-marketing mentality.)
    Does anyone know a fix to keep the damned thing from crashing? I've gotten so paranoid I save every 30 seconds, but when working on posts I am living in fear that a long post such as this may just disappear with the next crash, and I'll have to start all over again. (again.)
    Tony

    Find outthe graphics card you are using and do a search on Leopard forums for > graphics problems - it may be a matter of reinstalling the drivers.
    You can also search for the graphics card name.
    One example of a similar issue
    http://discussions.apple.com/thread.jspa?messageID=5884566&#5884566

  • Duplicate screen on composition window

    Hi I would like some help on how to change this back to normal. It is really bugging me and I cannot seem to remove it

    Look in the lower right of the Composition panel. You have chosen a 2 views layout. Use that menu to choose whatever view layout you want.
    After Effects Help | Modifying and using views

  • Firefox opens, and preview shows when hover on the task bar link, but the window will not maximize, or show up at any size on my screen (Windows 7) Help?!

    I am running Windows 7 and just updated Firefox to the 7.0 version. I can open Firefox, in the sense that I can run the application. I can see that it is open because the link shows up on my task bar, and when I hover over it I can see the thumbnail preview - which, incidentally says "You're almost there!"; but I can not open the window! I have tried clicking once on the task bar link, and once again (just in case I was clicking to minimize instead of maximize). I have tried double clicking the shortcuts on my desktop, then the one in my program files, as well as the one in my start menu, and the static one pinned to my task bar. I have tried accessing Firefox from every path available on my computer and I can open it every time, but *never* not even once have I been able to view it on my screen. I can't understand what would cause this and maybe I'm just an idiot but can anybody help me... please? Oh, and I don't know if it makes any difference, but I did try restoring 6.0 and I re installed 7.0 again, all to the same end... Many thanks to anyone willing to help me fix this!

    -> [[Software Update Failed#w_run-as-administrator|Run as Administrator]]
    -> right-click Firefox icon and choose Properties
    * go to Compatibility tab
    * click Use Resolution 640x480 pixels
    * click OK and start Firefox
    -> Firefox will now start but you should be able to change the size of the window.
    * Close Firefox and now Uncheck the 640x480 resolution
    * Start Firefox again and now all should be fine
    Check and tell if its working.

  • When watching Youtube clips firefox causes windown blue screen - windows 7 on HP8540w

    Hi
    HP8540w laptop with Windows7 professional.
    when watching youtube clips windows crashes - blue screen of death!
    watching the same clips in Internet explorer doesn't cause a crash - isolated to Firefox.

    See below -- the way I asked the question the first time may not be clear. This post was a goof but I can't figure out how to delete it

  • Blue screen, Windows stopped working, BC code 50

    I did a clean install of Windows 7 Home Premium 32 bit, on my vista laptop.
    I have had two blue screens in the past week, stating windows stopped working here are the details:
    BC code - 50
    BCp1 - 80024114
    BCP2 - 0000000
    BCP3 - 9850ED3A
    BcP4 - 0000000
    OS Version 6_1_71
    Service pack 1_0
    Product 768_1
    Can you help me with where the source of the problem is?

    We do need the actual DMP file as it contains the only record of the sequence of events leading up to the crash, what drivers were loaded, and what was responsible.  
    We prefer at least 2 DMP files to spot trends and confirm the cause.
    Please follow our instructions for finding and uploading the files we need to help you fix your computer. They can be found here
    If you have any questions about the procedure please ask
    Wanikiya and Dyami--Team Zigzag

  • Black screen: Windows 8.1 on Macbook pro retina 2012

    I've been sucessfull at installing Windows 8.1 on a USB 3 hard drive.
    I can boot into Windows 8.1, but the moment I start installing the video drivers, the screen goes black (stays on, but doesn't output anything)
    I've tried numerous times, each time with a different driver source:
    bootcamp support software 5.0 (the one the bootcamp assistant copies to the install drive)
    bootcamp support software 5.1.5621 (downloaded from the apple website)
    laptopvideo2go.com
    Windows update
    nVidia website
    Always the same problem.
    Any ideas?
    Thx
    Martijn

    I should mention I installed Windows in gpt/uefi.
    Therefor I believe the CSM reveals both the Intel HD4000 and the GT650M.
    Both show up in the devicemanagement tool of Windows.
    Maybe I have to disable the Intel GPU somehow?

Maybe you are looking for

  • Files are in READ ONLY mode

    I have a file server 2003 with shared folders. I have " FULL CONTROL" on all the folders. However, when someone else saves a document in one of the folders, it opens in READ ONLY mode on my Windows 7 machine, Office 2013. When I log into the server i

  • Incomplete data or ORA-28528 errors when accesing an Informix Server

    We have configured a dblink to an Informix Server. We are using UnixODBC + Informix CSDK on a RHEL 4 x86_64. After running several queries we have seen 3 different situations: A. The result of the query is correct. B. The result is incomplete. The ta

  • Error using ES Workplace PurchaseOrderByIDQueryResponse_In in WD CE 7.1

    Hi guys, I'm making the tutorial "How to consume an Enterprise Service from the ES Workplace in Web Dynpro", the url of blog is: https://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/6805. [original link is broken] [original link is broken] [original

  • Volcano 7 (original) and smart case fan

    ive ordered a smart case fan (not scfII), and was wondering if id be able to put it on my volcano 7? and if i did would it be betta then what comes on it originally? any thoughts would be appreaciated.

  • Why can't I import photos from my iPod Touch to iLife?

    I just tried to import photos from my iPod, and after selecting the photos I want, I pressed import selected and then I get a screen saying that they are unreadable files in an unrecognized format.  I have loaded hundreds of photos this way before an