Posted 14 July 2020, 4:40 am EST
Hi ! I am pretty new to coding and i am having trouble with ure TopicBar Links.
I created 3 TopicBarPages and each has his own links.
Now i wanna add a click event to my links. Normally i double click an object and i can start adding my code. Now this is something thats doesnt work work with the C1TopicBar Links. Can someone send me in the right direction? i just wanna add some code. ( in the mean while i found a way not sure thats its perfect ) But is there a possibility with a future update u can just double click on the link to add ure code?```
Private Sub C1TopicBar1_LinkClick(sender As Object, e As C1TopicBarClickEventArgs) Handles C1TopicBar1.LinkClick
Select Case e.Link.Tag
Case “TagPersonen”
Dim frm As New Form1
frm.ShowDialog()
Case “TaOvereenkomsten”
Dim frm As New Form1
frm.ShowDialog()
End Select ' MsgBox("U klikte op de link met de tag=>" & e.Link.Tag) End Sub
Did it like this now but if a friend starts working with me he needs to know al the tags. if u could just double click it and then write code would be easyer ( but correct me if i am wrong or if there are better ways to do this)