Resolution Problem
i am developing a package using code. but the problem is that when i am changing
resolution like 800 * 600 to 640*400 all the screen gets out of the range.
any solution for this problem .please help me.
[210 byte] By [
sagar] at [2007-11-10 12:50:02]

# 1 Re: Resolution Problem
Sagar,
You have 4 choices:
1) Stop the user from using the application if they don't have at least =
800x600 resolution.
2) Create variants of all your forms larger than 640x400, and use =
sysmetric(1) & sysmetric(2) to decide which to use.
3) Change your form base class to support vertical and horizontal =
scrollbars to support lower resolutions.
4) Add resizing capabilies to your Form/control classes. The VFP =
Foundation classes supply one, most frameworks offer this option, and =
there are a number of freeware/shareware/commercial solutions to =
resizing.
Rick
"sagar" <sagars_r@rediffmail.com> wrote in message =
news:3f09359b$1@tnews.web.dev-archive.com...
>=20
> i am developing a package using code. but the problem is that when i =
am changing
> resolution like 800 * 600 to 640*400 all the screen gets out of the =
range.
> any solution for this problem .please help me.