I am brand new at visual basic, and i have no clue what i am doing. i need help allowing the display of multiple dialog boxes as modeless.
This is my code, can someone please post a version that would allow this box to me modeless, and any other changes i would have to make. Thanks!


Private Sub llFormA_LinkClicked(ByVal sender As System.Object, ByVal e As System.Windows.Forms.LinkLabelLinkClickedEventArgs) Handles llFormA.LinkClicked
Using NewFormA As New FormA
Dim result = NewFormA.ShowDialog()
End Using
End Sub