How can I convert an application made for 1024 x 768 screen resolution to 800 x 600 resolution ?. There are a lot of forms and charts to adjust manually. Please help me with some ideas.
With great difficulty I think.
In the form_load sub, you could find out what resolution the screen is with then make all the control's height, width and position correspondingly smaller as in:
If Screen.Height \ Screen.TwipsPerPixelY > 700 Then
'Screen is 1024x768
Else
'Screen is 800x600
Divide the top, height, left and width and font size of each control by 0.78 (800/1024)if it is this resolution
End If
I'd like to know if there is an easier way also?
Ted
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.