Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
3answers
467 views

How can I retrieve monitor information?

I am trying to retrieve the monitor ID's as shown in the Windows display properties (#1, 2... etc), but I can't seem to find a way. I have tried using EnumDisplayMonitors as well as ...
2
votes
2answers
392 views

retrieve multiple display information using win32/C++

Is there any way to retrieve information about how many extra displays there are besides the main one, how they are numbered, what the dimensions are, etc? I know this is pretty easy in .net land.
2
votes
0answers
331 views

Win7: Monitor DC of secondary Monitor gets offset if disabling Aero

Scenario: Screen capturing on multi display machines. Capture screen of secondary monitor [which is the only affected] Turn off Aero: DwmEnableComposition(DWM\_EC_DISABLECOMPOSITION) Create a ...
1
vote
0answers
26 views

How can I change monitor settings to duplicate and extend via script

As I am using a laptop with a tv as its second monitor I want to make a little script which will trigger screen settings from extended to clone and when it is set to clone it should set the screen ...
1
vote
1answer
197 views

HDMI TV sometimes not detected in windows 7? Possible to invoke Detect in code?

i have a standalone public kiosk pc that startups automatically everyday. It is connected to a HD TV and sometimes it is not detected. i have to personally go down to the PC, go to Screen Resolution ...
1
vote
2answers
104 views

Extend an application to dual monitors

I have an application which runs on a single monitor. It has grids in that. Say for example if the application can hold 3 girds and there are 4 items to be placed, the 4th item should go to the second ...
1
vote
4answers
88 views

Automatically opening pages on different monitors

I am designing an emergency response page, which needs to display information across 3 different monitors. The first monitor will gather information about the caller, and then contain 2 links. The ...
1
vote
2answers
458 views

How do you get CreateWindowEx() to create the window on a specific monitor?

I've determined that I can use GetSystemMetrics(SM_CMONITORS) to query the number of attached monitors, but is their any way to control what monitor CreateWindowEx() uses for the window?
0
votes
0answers
85 views

RFB/VNC Client in C#, display scaling and multiple monitors

I'm currently making a VNC client in C# in order to get to grips with the protocol and all before I commit myself to making a mobile java version for Blackberry (As the only one out there is ...
0
votes
1answer
84 views

Mutexes vs Monitors - A Comparison

From what I have learned about Mutexes - they generally provide a locking capability on a shared resources. So if a new thread wants to access this locked shared resource - it either quits or has to ...
0
votes
0answers
11 views

how can i avoid race condition using openshell monitor?

I have a problem similar to dining philosophers. 1. 3 types of processes 2. 3 types of resources of N units each. 3. Process type A reservers 1 unit of resource type 1 and resource type 2 ...
0
votes
2answers
56 views

Macintosh Application location in case of dual monitor

Suppose my Macintosh machine has dual monitors how can I accurately determine the monitor in which my application is in.
0
votes
1answer
17 views

Getting an exception when performing Condition awaits?

I am getting an Exception everytime I run the following multithreaded code with Monitors. http://pastebin.com/jTGR98W9 http://pastebin.com/hKvuDX2d Everytime I perform a condition signal, I get an ...
0
votes
1answer
147 views

Cygwin non-US or indirect characters don't work in xterm on extra monitor

I have run into this freaky thing in two places now, on a Windows 7 and an XP machine. I have a laptop with an extra monitor connected. I start up cygwin's x-server, using the start menu shortcut ...
0
votes
1answer
122 views

WPF PIXELS DPI RESOLUTION

I am reading a book on WPF.As with all books, it gives an introduction on the problems the earlier display systems had with them.He refers to terms such as DPI, Pixels, Resolution etc.Is there any ...