I have GUI which is split in two pieces using a SplitContainer Control.
One part is a navigation Panel, the other a workspace Panel.
When I open the app, on start-up a new Form appears (using ShowDialog()
), to welcomes Users. I would like to show it centered in the middle of the workspace Panel.
Is there anybody who knows how to solve this?
Private Sub MainForm_Load(sender As Object, e As EventArgs) Handles MyBase.Load
frmWelcome.ShowDialog()
End Sub