ME YET AGAIN
If you need help with a project or need to know how to do something specific in VB.NET then please ask your questions in here.
Forum rules
Please LOCK your topics once you have found the solution to your question so we know you no longer require help with your query.
Please LOCK your topics once you have found the solution to your question so we know you no longer require help with your query.
2 posts
Page 1 of 1
does anyone know to to see if the mouse is outside the form without using the mouse leve because this seems to activate it even if it goes over a button or panel
you could use mouse leave, just check like this
Code: Select all
if e.x >= me.location.x and e.x =< me.location.x + me.width and e.y >= me.location.y and e.y =< me.location.y + me.width then
'still in
Else
'it is out
End if
Code: Select all
[code/]
2 posts
Page 1 of 1
Copyright Information
Copyright © Codenstuff.com 2020 - 2023