Tips for using VB 6

VB 6 programming is one of the easiest and widely used programming languages.
First thing about coding in VB 6 is you need to follow some standards for that. MSDN has written satndards for codig in VB 6.

Follow these tips while using VB 6
- Document yor code clearly and easily understandable by people when they read them.
Make simple comments for some difficult lines of code.
Indenting the code and arranging them according to the loop structures is an important thing.

- In general adapt a coding style that will be easy to maintain.
You can refer to this link for coding standards:
http://www.visibleprogress.com/vb_law.htm
Follow these best practices of coding, naming conventions, indentations and commenting.

- Choice of naming the variables is also very important.
This makes your code easier to read and understand.

- There is no such a system that is free from errors.

Design plays an important role to judge the errors.
So design document should be a powerful one to beat these errors.

- You need to understand the binary compatibility in order to avoid the errors.

- There are lot of performance tunig tips that need to be taken care of in order to make your code efficient and high performing.