IMHO the step from Java to VB6 is not that big... If you install Visual Studio and the MSDN library that comes with it you have a good starting point. Look at some code, put the cursor at a function and press F1. The "online" documentation that comes with VB6 is really helpful, unlike later versions. ;-) Also the auto complete functionality in Visual Studio is really helpful. I find it more helpful that the in-line completion in Eclipse for Java.
One of the upside of the Visual Basic design is that it is designed to be human readable (with if-then-else instead of brackets and so on). Of course that comes down to the single developer to write understandable and well commented code there as well...
A good starting point would be to find a guide that explains how different datatypes in VB6 are working. The difference between simple data types and objects. And how these are passed in to a function as an argument: "ByVal" versus "ByRef". I think this is one of the big "dangers" as a beginner in VB6. Once you get your head around it, it is easy.