1. RE: Questions about IDE and perhaps Win32Lib
- Posted by Jonas Temple <jtemple at yhti.net> Jun 24, 2003
- 467 views
Ray, If you're just interested in control placement/alignment then I would suggest looking at Don Phillip's xControls library (in the archive) which automatically adjusts size and placement for controls in a window when it's resized. Jonas Ray Tomes wrote: > > > My problem is that I am designing for a 1024x768 screen size but want to > > be able to have it work on any screen size and for everything to scale > correctly. I don't mind calculating the correct font sizes etc myself. > > How do other people deal with this? I see some windows that when resized > a > big gray area appears which is pretty useless. >
2. RE: Questions about IDE and perhaps Win32Lib
- Posted by Jerry Story <jstory at edmc.net> Jun 24, 2003
- 448 views
Ray Tomes wrote: > My problem is that I am designing for a 1024x768 screen size but > want to be able to have it work on any screen size and for > everything to scale correctly. My solution to that problem was: 1. K = <Get the screen resolution.> 2. Write a little function "mK()" that adjusts things to the screen resolution. 3. Run all sizes and all positions of all widgets thru mK(). For an example see any one of most of my programs under user contributions. Jerry Story