I've had a problem with a form that I use that is accessed using ShowDialog that has a bunch of labels that have large amounts of text on them. On those labels that have 20 or more lines of text on them the line spacing starts to wander away from that that you see when you're in the editor creating the text. I traced the problem to not having Enable Application Framework checked because I created a little miniprogram to try to solve the problem.

The project I'm working on starts from a module with a Sub Main that has the code :
Code:
   Public mainForm As Form
    Sub main()
        mainForm = New DisplayGraphics
        Do
            Application.Run(mainForm)
        Loop While Not mainForm Is Nothing
    End Sub
This is for the purpose of swithcing between forms in my application.

Is there a way I can manually enable the application framework after starting from Sub Main. Or perhaps I should abandon the approach I'm using to swithch between forms and start from a form so that I can have Enable Application Framework checked. I'd have to learn another way to switch between forms.

Another possibility is that there is something that enable application framework does that eliminates my line spacing problem that I could do without enabling application framework.