Hello,
I'm wondering if it is possible to link from one form to a specific element in another form, much like in HTML where you can use anchor tags on a page to take the user to a specific part of the page, not just the top. Some of my forms are going to be long for a specific reason and I'd like to be able to direct the user through a link to the relevant part of another form.
So say I have a linklabel in Form1 how can I get it to take the user exactly to Form2.TextBox2 and not just the top of Form2?
I've figured out a workaround to use a 'back to top' link for the long forms, it's just basically reloading the form the user is already on, which may seem a bit redundant but it works.
CODE
Private Sub lblTop_LinkClicked(ByVal sender As System.Object, ByVal e As System.Windows.Forms.LinkLabelLinkClickedEventArgs) Handles linklblTop.LinkClicked
Dim top As New frmAfrica
top.Show()
Me.Hide()
End Sub
However the solution to the other problem still eludes me.
Any suggestions would be much appreciated.
Thanks,
micaelita