vote up 1 vote down star

I'm moving from Java Development to a MSFT environment. The app is currently written in VB6 and while its going to go to VB.NET/C# in the future, I need to find a way to pick up VB6 now. I'm told its old, and there will be no books on it available these days.

Any tips? Sites?

flag

Keep in mind that Microsoft stopped the support for VB6, several years ago. – Moayad Mardini Jun 29 at 8:35

11 Answers

vote up 3 vote down check

A good starting place is the MSDN VBRun site. One of the more interesting things there is the information regarding integrating .net code into VB6 code which can allow the migration to go more quickly.

link|flag
vote up 0 vote down

Might be too late, but I recommend you to have a look to these nice sets of tips and tricks:

link|flag
vote up 1 vote down

Presumably you've read the manual? As well as reference material there are useful overviews. The "Programming with objects" chapter of the "Programmers Guide" covers classes.

Some parts of the overview documentation are aimed at beginners, but you can skim those bits.

link|flag
vote up 0 vote down

Just wanted to link ABEBooks which is an excellent site for second hand books. Been selling them longer than Amazon - 110 million books listed as I type this.

link|flag
vote up 1 vote down

As previous posters said there is an absolute ton of help available for vb6 online and very cheaply on amazon. Francesco Balana's book "Programming Visual Basic 6.0" would be my recommendation as the best book to get. It's tough enough in parts but well worth the effort as the reason for that is the information he's delivering will give you a far deeper understanding of the subject than "for dummies" types of book. He's also written what is I believe is considered one of best books on the .net visual basic and is probably the foremost expert on migrating from vb6 to vb.net and the pitfalls therein.

link|flag
He's also written one of the outstanding automatic tools for migrating VB6 to VB.NET www.vbmigration.com – MarkJ Mar 5 at 14:45
vote up 2 vote down

Despite the title, Hardcore Visual Basic is the best and the fastest way to learn VB6 if you are coming from another programming language. And the book is available for free online!

link|flag
The only VB that I ever liked (maybe because the author doesn't treat you as a moron) – Eduardo León Mar 5 at 14:50
vote up 1 vote down

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.

link|flag
vote up 3 vote down

loads of books available Amazon.co.uk

also I have used this before Progamming VB6

link|flag
vote up 4 vote down

The best tip is to... RUN! ;-)

No, there are still tons to vb sites out there, and you should still be able to pick up loads of second hand books for VB6 for next to nothing.

link|flag
vote up 0 vote down

You find a lot of tutorials and introduction documents here: vb6.us

furthermore the MSDN VB6 is always worth a look.

link|flag
vote up 0 vote down

I'm sure you can get some books on it. If Amazon has none, try Ebay?

It's a simple language, though - you shouldn't have much trouble picking it up! There's always the MSDN documentation.

I'm having the opposite problem: I've got a few old apps in VB and need to update one of them, but can't find the install media!

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.