The MASM Forum Archive 2004 to 2012

General Forums => The Workshop => Topic started by: shankle on June 11, 2005, 09:26:53 PM

Title: writing programs for various size monitors
Post by: shankle on June 11, 2005, 09:26:53 PM
100% of my programs were written for 17"
Title: Re: writing programs for various size monitors
Post by: shankle on June 11, 2005, 09:40:17 PM
Hit the wrong key on the previous message. Sorry...

100% of my programs were written on a 17" monitor.
I just got a 19" monitor.
I just got a whole LOT of problems.

If anyone else has found themselves in this predicament,
I sure would like to hear there solution.

Regards,
JPS
Title: Re: writing programs for various size monitors
Post by: chep on June 11, 2005, 09:47:41 PM
Errr... the monitor size has nothing to do with it!
Perhaps the screen resolution, but definitely not the monitor size!

Imagine running a program designed for 17" 1280x960 on a 21" 640x480... it won't even fit the screen! :wink :bg


More seriously, what kind of problems are you having exactly ??


BTW, you can edit your own posts. :wink
Title: Re: writing programs for various size monitors
Post by: donkey on June 11, 2005, 10:05:46 PM
Chep is right, only resolution matters in Windows. I write my apps for a minimum res of 800x600, after all who uses 640x480 since the death of Win95. My system is at 1024x768 (96DPI) but I have several virtual machines running at various resolutions and OS versions to test with.

About all I can suggest is that you write your apps with resizable windows and controls, my bigger apps all have those so they look right at all resolutions. For retro-fitting existing apps without changing them just make sure the resolutions you set for your new monitor is at least the same (or greater) than the old one.
Title: Re: writing programs for various size monitors
Post by: hutch-- on June 12, 2005, 01:16:02 AM
Jack,

Its simple enough to handle, just determine the screen resolution and set you windows to a percentage of the current resolution. A dialog is a bit different in that it sizes itself on the font size so if you want them to run on old boxes with lower resolutions, make sure they don't end up too big.
Title: Re: writing programs for various size monitors
Post by: thomasantony on June 12, 2005, 07:01:22 AM
Yeah, hutch is right. USe GetSystemMetrics with SM_CXSCREEN and SM_CYSCREEN

Thomas
Title: Re: writing programs for various size monitors
Post by: donkey on June 12, 2005, 06:57:54 PM
Well, the screen x/y is not what determines the sizing of the dialog, it is the font as Hutch said. The GetDialogBaseUnits API will allow you to calculate the eventual size in pixels of your dialog given the following formulas:

left   = (left   * baseunitX) / 4
right  = (right  * baseunitX) / 4
top    = (top    * baseunitY) / 8
bottom = (bottom * baseunitY) / 8

There is also the MapDialogRect API to do it all at once, it is particularly useful for dialogs with the DS_SETFONT style set. I think I have an example of doing it in my Res2Dlg AddIn for RadASM, can't remember if I used it or not.
Title: Re: writing programs for various size monitors
Post by: shankle on June 13, 2005, 02:11:27 AM
I have attached a small program to test the resolution on a 19" and 17" monitor.
They both seemed to work.

I would appreciate any comments on the program and any comments as to the next
step I should try.
For instance text, bitmaps etc.
My resources for learning are Petzolds book. Nothing else.




[attachment deleted by admin]
Title: Re: writing programs for various size monitors
Post by: hutch-- on June 13, 2005, 11:50:22 PM
Jack,

It works fine on my 21 inch monitor, fits properly on the screen with no missing bits.  :thumbu
Title: Re: writing programs for various size monitors
Post by: shankle on June 18, 2005, 02:46:40 PM
Thanks for all the replies.

In using the following code to resize the screen on a 19" monitor, it  leaves about a 1/2 " area
not filled by the large rectangle and then the taskbar: 

    mov rr.left,0
    mov rr.top,0
    invoke GetSystemMetrics, SM_CXFULLSCREEN
    mov rr.right,eax
    invoke GetSystemMetrics, SMCYFULLSCREEN
    mov rr.bottom,eax
    invoke CreateWindowEx, NULL, addr szDisplayname, addr AppName, WS_OVERLAPPEDWINDOW,\
      rr.left, rr.top, rr.right, rr.bottom, NULL, NULL, hInst, NULL

   Thanks for any advice,
   JPS


   
Title: Re: writing programs for various size monitors
Post by: doomsday on June 18, 2005, 03:11:09 PM
I think it'd be worth mentioning that SystemParametersInfo with SPI_GETWORKAREA is IMO a better option as it gives you the area of the screen minus the bit obscured by the taskbar.

regards,
-Brent
Title: Re: writing programs for various size monitors
Post by: shankle on June 18, 2005, 10:55:43 PM
Doomsday,

I tried the following code as suggested by you:

    invoke SystemParametersInfo, SPI_GETWORKAREA, 0,  RECT, 0

It compiles without errors.

It runs without creating the 1st screen.
If a debugger is used, it bombs inside  SystemParametersInfo.

JPS