The Way to Programming
The Way to Programming
I am creating a game in Visual Basic and I am wondering if there is another way of using full screen in my form instead of maximizing its window style? The typical full screen does maximize form size to fit screen resolution right? I wonder if there is a way to run my application(800×600) in full screen without changing my screen resolution manually to 800×600?
For example:
my application’s resolution is 800×600;
my screen resolution is 1024×768;
My application in full screen:
my application’s resolution is 800×600;
my screen resolution is 800×600;
You need to develop your form using the smallest resolution it’s going to be viewed at.
While designing it, pay close attention to the “Anchor” and “Dock” properties.
It’s these two properties that determine how other controls within the form will be re-sized when the form is larger.
Sign in to your account