Hi Guys just want to ask advice regarding a form inside a control panel.
Its actually a ebook kind of program with table of contents.. See my screenshot below
On the left side are labels that when i click contents will be shown in the right panel.
Notes: Ive made 3 forms 1st form is the screenshot 2nd form has its own text contents and 3rd is another example below is my code:
Private Sub LinkLabel1_LinkClicked(sender As Object, e As LinkLabelLinkClickedEventArgs) Handles LinkLabel1.LinkClicked
Dim f3 As New Form3 With {.TopLevel = False, .AutoSize = False, .FormBorderStyle = FormBorderStyle.None}
f3.Parent = Panel1
Form2.Hide()
f3.Show()
End Sub
Private Sub LinkLabel2_LinkClicked(sender As Object, e As LinkLabelLinkClickedEventArgs) Handles LinkLabel2.LinkClicked
Dim f As New Form2 With {.TopLevel = False, .AutoSize = False, .FormBorderStyle = FormBorderStyle.None}
f.Parent = Panel1
Form.Hide()
f.Show()
Cant seem to work this out. Thanks you!