multiple-monitors

What determines the monitor my app runs on?

自作多情 提交于 2019-12-02 14:25:51
I am using Windows, and I have two monitors. Some applications will always start on my primary monitor, no matter where they were when I closed them. Others will always start on the secondary monitor, no matter where they were when I closed them. Is there a registry setting buried somewhere, which I can manipulate to control which monitor applications launch into by default? @rp: I have Ultramon, and I agree that it is indispensable, to the point that Microsoft should buy it and incorporate it into their OS. But as you said, it doesn't let you control the default monitor a program launches

Output to another Window

被刻印的时光 ゝ 提交于 2019-12-02 11:41:16
Is there a way to direct a form in VB.NET to open and maximize in the second monitor. That is if there are two monitors displayed, to have the form load in the second window maximized by default? Say a program was made with two forms and a computer has two monitors attached. I want FormA to show in MonitorA by default and FormB to show in MonitorB maximized by default. EDIT: Further edited for clarity. The first thing is to get information about available screens. You can get that from Screen.AllScreens . Next is to determine how many screens there are (note that there may be more than two).

How to open a WPF Application in a specific Place on a Specific Monitor

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-02 09:37:53
问题 I have two application which communicates together, to be more specific I have app1.exe and app2.exe this 2 apps are in the same PC which has one monitor and one TV how can I open app1.exe on TV and the other on my Monitor. Actually to do this I'm using a third party tool which is named Actual Multiple Monitors . my goal is to remove this tool because I'm using this only for the function to open my applications in the right place. it would be great if there is a possibility to do this using

How to put monitor on standby and not let it wake up

拥有回忆 提交于 2019-12-02 08:22:55
I have 3 monitors, but I don't need them all turned on all the time. I can just shut them down with power button, but I want to use their standby mode, like Windows does when we let PC idle for a while - it shuts down monitors, HDD, etc. But of course, I wanna keep using PC and let just that monitor on standby. Others must remain on and that one doesn't wake up even with me using PC. Is it possible to do that? It would be great to have a shortcut like Winkey + 1 , 2 , 3 etc to shut down and wake up each monitor. An existing app with this feature is not likely to exist, but is there a Windows

Simple Application to switch Primary dispay

五迷三道 提交于 2019-12-02 05:53:28
问题 My current set up for my computer is with a 17 inch monitor on my desk and my HDTV a few feet away. Every once in a while (generally when playing games) things work better when I switch my primary display to my HDTV. I'm running vista, so things can become a huge pain, as I have to go through several windows just to switch. I'm thinking of making a simple application that will simply switch my primary and secondary monitors. I've looked around here, codeprojects and the MSDN library and haven

GUI applications in python for fast update of on-screen images

假装没事ソ 提交于 2019-12-02 05:33:28
问题 I apologize in advance for my noob-ness; I'm just getting into programming. Can you set me down the right path for a GUI framework? Looking at this list of GUI frameworks is pretty daunting, considering my general lack of expertise. Summary: I'm trying to write a GUI in python that actively updates a second monitor with images that are mathematically generated using numpy. The GUI will have parameters that can be adjusted in real time that change the image (an interference pattern of light)

How can I control which monitor plots are displayed on?

心不动则不痛 提交于 2019-12-02 02:26:38
问题 I have a 3 monitor Gentoo Linux system running MATLAB. MATLAB runs on the center monitor. I need MATLAB to generate plots on the left monitor but it always plots on the right monitor. I believe this is at least partially caused by the non-standard way I have my monitors arranged physically - essentially 2,3,1: >> get(0,'MonitorPositions') ans = 1 1 1920 1080 -3839 1 1920 1080 -1919 1 1920 1080 Is there a way I can control this as a default within MATLAB? 回答1: You can set the default figure

GUI applications in python for fast update of on-screen images

做~自己de王妃 提交于 2019-12-02 01:46:18
I apologize in advance for my noob-ness; I'm just getting into programming. Can you set me down the right path for a GUI framework? Looking at this list of GUI frameworks is pretty daunting, considering my general lack of expertise. Summary: I'm trying to write a GUI in python that actively updates a second monitor with images that are mathematically generated using numpy. The GUI will have parameters that can be adjusted in real time that change the image (an interference pattern of light) accordingly. Important criteria: parameters adjusted on screen change the interference pattern in real

How can I control which monitor plots are displayed on?

不羁岁月 提交于 2019-12-02 01:29:29
I have a 3 monitor Gentoo Linux system running MATLAB. MATLAB runs on the center monitor. I need MATLAB to generate plots on the left monitor but it always plots on the right monitor. I believe this is at least partially caused by the non-standard way I have my monitors arranged physically - essentially 2,3,1: >> get(0,'MonitorPositions') ans = 1 1 1920 1080 -3839 1 1920 1080 -1919 1 1920 1080 Is there a way I can control this as a default within MATLAB? You can set the default figure position on the root object like so: set(0, 'DefaultFigurePosition', [-3839 1 1920 1080]); This will create

Unity3D: Displaying different scenes on multiple monitors

孤者浪人 提交于 2019-12-01 20:30:50
Unity3D has native multimonitor support in recent versions. The API documentation suggests that this is tied to connecting each display to a camera view. Is it possible to, instead, map a display to a scene ? So that a user with two monitors could have two different scenes each displayed on one of the monitors ? If it is possible, how would one go about doing this ? Programmer Display different scenes on multiple monitors? No , you can't. Display different cameras from the-same scene on multiple monitors? Yes! with the Display class. The fact is that you cannot run two different scenes at the