useful things to know...

frix199

Member
Joined
Jul 18, 2005
Messages
19
Programming Experience
1-3
hey all!

i was playing around vb.net and i found some usefull things...

------------
mouse move
------------
Me.Cursor.Position = New Point(x, y)
------------
the best way 2 close an application :D
------------
Me.Dispose()
Me.Close()
Application.Exit()
End
------------
disable alt+f4
------------
If e.KeyCode = Keys.Alt Or Keys.F4 Then e.Handled = True
------------
sending keys
------------
SendKeys.Send("keys")
------------

mayb this post could b pinned and every1 post here usefull things he knows...

ciao!!!
 
Back
Top