Often times when writing a Visual Basic application we need to display boring data in a more appealing way. This is where charts come in handy. This tutorial explains how you can create charts from within VB6. It specifically shows how to create animated charts using a third part control called FusionCharts.
Want to get a hold of Visual Basic 6.0? Do you have a program written in VB that you wish to run but don't have the VB6 runtime any longer? Have an older program and want to get it running on the latest OS. Read this article for information about downloading VB6 and other VB components.
The common dialog control allows you to do exactly what you would expect: use common dialogs with in your Visual Basic application. This allows you to use things like the print dialog box, file save and open dialog box, the color selector, and font selector dialog boxes. With this simple control you can display all the common dialogs your used to on a windows system.
Toolbars allow you to provide a simple and effective way to present users with access to different functions within your application you develop. Visual Basic makes it easy for you to add tool bars to your VB6 application. Check out this tutorial to learn exactly how to add this great future to your next program.
This tutorial explains how you can work with Menus in Visual Basic. It covers both normal (on the top) menus and pop-up menus (that "popup" when you right click). You will use both these types of menu's in almost any Visual Basic application you develop.
You've probably used Drag and Drop in other windows applications. Its a useful feature and it adds a bit of flair to any application you develop. Learn how to use Drag and Drop in this Visual Basic tutorial.
Many times within your Visual Basic application you will need to implement your own scroll bars for selection or to display different pieces of a larger graphic or document. Many controls have scroll bars built in but when you are handling things yourself you can learn how with this VB6 tutorial.
Learn how to use the DriveListBox, DirListBox, and FileListBox to interact with the Windows file system from within your own VB6 environment. This VB tutorial teaches you how to create a file browser and viewer from within Visual Basic.
Visual Basic combo boxes are like list boxes but they allow you to have a drop down list and/or be able to type in your own list items instead of only selecting one of the current items. This VB6 combo box tutorial teaches you everything you need to know to use combo boxes in your Visual Basic application.
Learn everything about the Listbox control. From simple to advanced to very advanced things you can do with this neat control.
This tutorial creates a complete program that uses forms, timers, check boxes, radio options, and other basic controls to make a fractional math game.
Check boxes are used many times in programming for settings - this shows how they work in Visual Basic 6.
Learn how to use the option buttons aka radio button controls in your Graphical User Interface (GUI).
This explains the very useful feature of control arrays. Control arrays allow you to create controls at runtime.
Learn many different ways to work with images in - such as resizing them, displaying them, using icons, etc.
Learn how you can use multiple forms. This example shows how to display a splash screen to your program before it starts.
The timer control is very useful learn how to use it effectively.
This explains in detail how forms work in Visual Basic. It demonstrates how to create them and handle events.
This shows you how to use the standard Visual Basic controls in your GUI.
This demonstrates how you can use RDO (remote data objects) in Visual Basic to access a database.
This demonstrates a full working application using nothing but DAO code (no data control) this gives you the advantage of having full control over everything.
See examples of developing database applications using the data control that ships with Visual Basic 6.
See how to create a program that reads data using ADO and displays it in a nice ListView control in this VB6 tutorial.
Many times you want to add menus at runtime based off of config files or other info. Learn how to do that simply by using menu control arrays.
Learn how to create a full working application that mimics a cellphone keypad. We do this with control arrays and a timer.