there is not such as key input from console in VB6. The only way to get user keystrokes is to catch the form KeyDown event (after setting the KeyPreview property to true). Or you can use API or put a messageHook in your app, but if you are just learning stay away from that.
BTW you can find all the documentation online at
www.msdn.com. Or, if you have the original VB6 distribution CD (that you should unless you have a pirate copy) all the documentation is there ready to be installed, no need for any book
BTW2 are you new to programming? If not I suggest you to skip VB6, and go to .NET directly, VB6 is nowaday just a legacy language, even though still used.
Marco