Reputation: 494
Forms and Modules in VB6 don't show when I double click them. In order to have them appear on screen I have to click Window > Cascade and everything moves into place, but when I open them from the project view nothing appears.
It seems like designer windows are displayed out of view... how can I fix this?
Upvotes: 1
Views: 624
Reputation: 1771
The form windows positioning, and which forms are open, is stored in the ProjectName.vbw
file. Delete that file then open your project and the previous form windows settings are forgotten. The .vbw
file should not be added to your source control system, there's nothing in it that is needed for code history reasons.
Upvotes: 4