Learn To Program NOW!
VB Classic

Vb Classic = VB6

Drag and Drop  

Drag and drop operations provide your application with a level of behavior users have come to expect.

Using Ole Drag and Drop for dragging files from Windows Explorer  

A very simple example of using Ole drag and drop

Listview - Using the Listview common control  

Stuff about list view

Can you show me an example of making each item of a listview a diffrent color ?  

You can set the text color of each "cell" in a Listview to a custom color. Here's how...

Object Oriented Programming in Visual Basic  

VB has long provided some Object Oriented Programming (OOP) features that can help make your project better organized, faster, and more easily extended. Here are a few tips about VB OOP.

Graphics  

There are a lot of things you can do with Graphics in VB6 - lets have a look and see what is available

File I/O  

Here are things about File I/O in VB Classic

Working with numbers  

You'll constantly work with numbers as a programmer. Here are a few tips that might be of help.

Determining if a number is Odd or Even  

When working with an integer or long, you can use the MOD operator to determine if that number is Odd or Even. Wow.

Working with strings  

A fundamental aspect of almost any application is working with text. Here are a few tips I hope you find helpful.

Improve performance in building large strings with a custom stringbuilder class  

Building large strings can be a real performance issue in VB6. Here is a simple version of a string builder class that you can use to improve that performance a great deal.