The VB IDE remembers most of the configuration settings that were active when you closed the previous session. However, the maximized status of child MDI windows (the code editor and the designer window) isn’t remembered, and the IDE always starts with non-maximized windows. To have VB always start with maximized code and form windows you can follow this series of operations
- Run the RegEdit program
- Locate the following registry key:
HKEY_CURRENT_USERSoftwareMicrosoftVisual Basic6.0 - Add the string value MDIMaximized and set its value to “1”
Alternatively, you can copy the following lines to Notepad and save them as a REG file (e.g. MDIMAX.REG), then double-click on the REG file to merge these lines in the Registry.
REGEDIT4[HKEY_CURRENT_USERSoftwareMicrosoftVisual Basic6.0]MDIMaximized=1
Of course you can also prepare a similar .REG file that restores the default behavior, by using the “0” value instead of “1”.
Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience.























