Problem With Resolution

jothis

Active Member
Licensed User
I Have A Problem With The Resolution of My Application

My Application Resolution Is 1024 X 768

In My Desktop Pc I Can See My Application as it is. But My Laptop Resolution is 1024 X 600 Here I Cant See Some controls in my application. What Should I Do To Correct This?

I Attached the images here Please See That Too

Please Help Me
Jothis
:sign0163:
 

Attachments

  • 1024 x 600.jpg
    1024 x 600.jpg
    24.6 KB · Views: 245
  • 1024 X 768.jpg
    1024 X 768.jpg
    34.1 KB · Views: 225

klaus

Expert
Licensed User
Longtime User
I see two solutions:
- change in the IDE the screen resolution of your application to 1024*600 pixels (or the lowest resolution you think your allpication is supposet to run on) and rearrange all the controls.
- check, at the start of the program, the screen resolution and arrange the controls by code according to the current resolution.

Best regards.
 

jothis

Active Member
Licensed User
Thank you For Your Replay klaus

But My Contents In The Form Will Not Fit In The Resolution 1024*600
in c# We Can Get The System informationBy This Code
B4X:
MessageBox.Show( "Monitor Height:" + SystemInformation.PrimaryMonitorSize.Height);
MessageBox.Show( "Monitor Width:" + SystemInformation.PrimaryMonitorSize.Width);
In Basic 4ppc Is It Possible To Get Monitor size?
if possible i want to know how to get the current Monitor size of the system?
Can you Help Me?

Can you Help Me?
:sign0085:
 
Last edited:

Discorez

Member
Licensed User
Longtime User
In attached sample project you can maximize/minimize form, resize it and auto maximize form for current display size.
In resize event, you can change position and size of controls
 

Attachments

  • Resizing&MaximizedForm.zip
    31.5 KB · Views: 203
Top