Is there anything I can do for all open windows when opening a VB6 project?

Whenever I open a VB6 project, I convert to VB.NET, in the IDE there are many open windows. Besides breaking them down into quick access to the close buttons and closing them one at a time, is there anything I can do about this?

+4
source share
3 answers

If you add the MZ Toolkit to your VB6 environment, which includes the "close all windows" button (along with many other convenient things).

+4
source

First close all code windows in the VB6 IDE, and then exit the IDE. Go to the folder where the VB6 project is located and find the file with the extension .vbw. Mark this file as read-only. This will prevent the IDE configuration from being saved when exiting the IDE in the future.

+6
source

I found that the .vbw file extension has a read-only attribute bit. I cleaned the forms, now they are saved correctly.

0
source

Source: https://habr.com/ru/post/1436085/


All Articles