473,732 Members | 2,210 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Independent monitor control

I'd like to write a programme that runs on a PC with two monitors. The application would be used in
a shop, with one monitor for shop assistant and the other for the customer. The two must show things
independently, so the application can display certains things on one monitor (eg goods in the store)
and certain other things on the other monitor (eg details of a certain product). Is this possible?
May 7 '06 #1
4 2388
"John" <-> wrote in message news:OL******** ******@TK2MSFTN GP02.phx.gbl...
I'd like to write a programme that runs on a PC with two monitors. The
application would be used in
a shop, with one monitor for shop assistant and the other for the
customer. The two must show things
independently, so the application can display certains things on one
monitor (eg goods in the store)
and certain other things on the other monitor (eg details of a certain
product). Is this possible?


Yes. Windows supports dual monitors. The only problem is the shop keeper
might lose the mouse pointer as it can go onto the other screen. Dotnet has
functions built in for dual monitors. You can either add a second video card
or use a "dual head" card.

Michael
May 8 '06 #2
Hello John" -,

It's possible. Most of videocards have 2 output - DVI and VIDEO. Everything
u need is to plug 2 monitors and set in the display property that u extend
your screen on 2 monitors.
This gives you ability to drag any window to one or another monitor. But
focus(active window) could be only one

J> I'd like to write a programme that runs on a PC with two monitors.
J> The application would be used in a shop, with one monitor for shop
J> assistant and the other for the customer. The two must show things
J> independently, so the application can display certains things on one
J> monitor (eg goods in the store) and certain other things on the other
J> monitor (eg details of a certain product). Is this possible?
J>
---
WBR,
Michael Nemtsev :: blog: http://spaces.msn.com/laflour

"At times one remains faithful to a cause only because its opponents do not
cease to be insipid." (c) Friedrich Nietzsche
May 8 '06 #3
Of course it is easy to run a program on two monitors.
If you run the monitors in clone mode, exactly the same information appears
on both.
This is not what you want, although it is useful for presentations, etc.

I do not know how to specify programatically that one screen should appear
on monitor one, and another on monitor two.
There must be a way to do this.

I was wondering if it would be possible to run two programs.
One which the shop keeper runs and displays on his monitor.
And a second program that could monitor activity (database activity), and
display that information on a customer monitor.
I am guessing that the customer is not going to interact with the
application.

Just some thoughts
Harvey Sather
Saskatoon


"John" <-> wrote in message news:OL******** ******@TK2MSFTN GP02.phx.gbl...
I'd like to write a programme that runs on a PC with two monitors. The
application would be used in
a shop, with one monitor for shop assistant and the other for the
customer. The two must show things
independently, so the application can display certains things on one
monitor (eg goods in the store)
and certain other things on the other monitor (eg details of a certain
product). Is this possible?

May 8 '06 #4
"John" <-> wrote:
I'd like to write a programme that runs on a PC with two monitors. The application would be used in
a shop, with one monitor for shop assistant and the other for the customer. The two must show things
independentl y, so the application can display certains things on one monitor (eg goods in the store)
and certain other things on the other monitor (eg details of a certain product). Is this possible?


You'll need a two-monitor PC yourself to do testing on!

Anyway, Windows makes it very easy. You plug in your two monitors, go
to DisplayProperti es>Settings, click on the secondary monitor and say
"Extend my desktop onto this monitor".

Now the overally Windows desktop extends from -1024 on the x axis to
+1280 on the x axis (assuming you had a 1024x768 monitor to the left
of your primary 1280x1024 monitor).

In other words, coordinates range over the entire area of both
adjacent monitors. So Windows lets you create one window whose
dimensions make it take up one monitor, and another window whose
dimensions take up the other monitor. Just using standard
left/right/width/height properties. Also, Windows provides calls to
enumerate all the monitors on the system, and find each one's bounding
coordinates within this universal coordinate space.

PS. I've done this with straight win32 programming. So I don't know
whether the .net framework will get in the way.

--
Lucian
May 8 '06 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

10
11616
by: santiago538 | last post by:
Hi, Is there any way to specify which monitor a Window.open() will launch a new browser window in on systems with more than one display. It would only need to work with Mozilla browsers, and not IE. Thanks!
7
1945
by: dcrespo | last post by:
Hi to all, I'd like to have an app monitor that gets rid of another app, in the way that if it closes unspectedly, the app monitor just wake it up one more time, and viceversa. I mean: Main application starts This one starts the App Monitor of itself. (This means that if Main
2
2651
by: JS | last post by:
I have v8.1 fix5 using Win2k AS on 7 node logical system. I create event monitor writing to file and turn it on. Using application, I connect to db and navigate from screen to screen, generating reports using select sql. I flush the buffer, turn the event monitor off and format the data with db2evom. But, the output never contains the statement text. But, if I issue sql from the clp, these statements appear in the output. In addition,...
2
2631
by: Theodoros.Savvides | last post by:
Hi All, We are developing an application and we have a problem for which I cannot find any information anywhere. The application consists of a windows user control and an ASP.NET application that has a Web Form loading this control using the object tag. The HTML code looks like this: <OBJECT id="LoginControl" style="WIDTH: 673px; HEIGHT: 388px" classid="../WinControls/CommonWinControls.dll#CommonWinControls.UCBatchForm"
2
3391
by: Armin | last post by:
Hello I want get the Screen Coordinates of a Control. I do this with Control.PointToScreen. vlob_Point = Me.PointToScreen(New System.Drawing.Point(0, 0)) This works fine with a Single Monitor but
2
1286
by: Robert Kemp | last post by:
I am creating a non-visible/tray control that monitors other custom controls for changes (among other things). One of the monitored controls is a new textbox that adds functionality to the standard textbox, and includes a variable that points to the monitoring tray control... it works just like the imagelist that is attached to any control that supports imagelists, such as a treeview or listview. Everything is working the way I would like...
2
1123
by: WRH | last post by:
Happy holidays everyone! I know this is off topic but this is a pretty sharp group... Santa will be bringing me a new wide format monitor which has lots of room to display windows side by side. The thought occured to me however that it would be even nicer to have two independent desktops side by side. Is this or something like it possible with Windows XP? (There is support in XP for multiple monitors but not, as far as I know,...
0
821
by: Zulander | last post by:
I am still having problem with the user control, for some reason my usercontrol wont stay in the memory, it is stoping at the end of the Login1_LoggedIn sub , The Application("Monitor") should keep it running? thank you ----------------File global.asax------------------- Sub Application_Start(ByVal Sender As Object, ByVal E As EventArgs) Dim Monitor As FileMonitor.Monitor Application("Monitor") = Monitor
114
3890
by: Andy | last post by:
Dear Python dev community, I'm CTO at a small software company that makes music visualization software (you can check us out at www.soundspectrum.com). About two years ago we went with decision to use embedded python in a couple of our new products, given all the great things about python. We were close to using lua but for various reasons we decided to go with python. However, over the last two years, there's been one area of grief...
0
8946
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8774
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9181
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8186
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6735
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6031
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4550
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
3261
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2180
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.