In my program I have a menu screen which has links to other forms on it. It's only a notepad but I'm trying to add maximum features to it as it's my final project. I have one link that works and that is to the main text editor.
I have another link that takes you to the help screen that doesn't work at all. I get a green underline under 'help'. I don't know if I should declare it, but usually it recognizes a form and change colour but not this time
Code:
Private Sub LinkLabel1_LinkClicked(ByVal sender As System.Object, ByVal e As System.Windows.Forms.LinkLabelLinkClickedEventArgs) Handles LinkLabel1.LinkClicked
Main_Window.Show()
End Sub
I have another link that takes you to the help screen that doesn't work at all. I get a green underline under 'help'. I don't know if I should declare it, but usually it recognizes a form and change colour but not this time
Code:
Private Sub LinkLabel2_LinkClicked(ByVal sender As System.Object, ByVal e As System.Windows.Forms.LinkLabelLinkClickedEventArgs) Handles LinkLabel2.LinkClicked
Help.Show()
End Sub
Comment