I have developed an MDI MFC image viewer application for simultaneously viewing and comparing more than one images. In my application I need to implement dual monitor support which can view the displaying images in two monitors connected to the system and viewer should have provision to arrange the opened images in desired monitor screen.
I have connected two monitors to my computer using a graphics card.
But when I open my MDI application its window only displaying in primary monitor even though the windows desktop extended to whole two monitor screens.
How can I extent size of MDI application frame to occupy the whole screen of the two monitor.

I don't exactly know how to solve my issue
Anyway I'm thinking if the application window extent to whole monitor, then can split(by using splitter window type of method) the whole screen to a number of windows placed in the two monitors to display the different images.
But I'm not sure about whether it is a proper solution.
I have few doubts in this regard
- can I extent the MDI frame window to occupy the whole screen space (of two monitors)
- can I place the child frames in the desired area of mainframe

A second approach I planning is to simultaneously creating two instance of my image viewer application by calling from another main application (using threads if necessary) then place the individual image viewer application windows in two monitors screens and control the images displaying in image viewer applications from the main application. For successfulness of this approach I need to create a second application which can create and control two instances of the image viewer application and should able to place their windows in the two monitor screen. I don't know whether this is technically possible.
I searched a lot in web but I couldn't find any help. I only found one somewhat useful information from the code project article in the post http://www.codeproject.com/Articles/3690/MFC-classes-for-multiple-monitors
and I tried to use it in my MDI application, but I failed.
If anyone share their knowledge about implementation of dual monitor support in MFC MDI application, it will be more helpful for me.

I tried to use it in my MDI application, but I failed.

Why did it fail? Did you get compile error(s)? Did the example demo program work?

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.