WHAT IS THE EQUIVALENT OF THIS CODE IN VB.NET
Visual Basic
2
Posts
2
Posters
1
Views
1
Watching
-
hi guys, what is the equivalent of this lines of codes in VB.Net 1.SendKeys {HOME} + {END}
Don't block the drive way of all the newbies in programming. :)
In VB2005 it would be like this:
My.Computer.Keyboard.SendKeys(Keys.Home & Keys.End)
Trinity: Neo... nobody has ever done this before. Neo: That's why it's going to work.