Can we make form icon (that is present with the text of form) clickable. I set icon to another pic of my system now i want to click icon and it will go another place. Is this possible?
Private Sub frmdisplayform_Click(sender As Object, e As EventArgs) Handles MyBase.Click
Dim x, y As Single
x = Control.MousePosition.X
y = Control.MousePosition.Y
End Sub
I am trying to use this code to get the position of click but it is not working in the title bar icon of the form.