3D Label Control: A good introduction to OCX development for beginners.
A demo on how to build a CoolBar: A demonstration of using Coolbar Control to build a Coolbar in your application (CoolBar Control, MSComCtl.Ocx, is a container control for creating user-configurable toolbars similar to those seen in Internet Explorer).
AOL Style Command Button: This is a command button that simulates the look and feel of the graphic buttons on AOL, including the borders, shadows, default font, and click animation.
ActiveX Control to Set Maximum and Minimum size of a Form:Add this control to your form and set the max and min properties. At run time when the user resizes the form, he/she will not be able to exceed the properties set.
Add Bookmarks to Text in an RTF Control: The demo shows you how to create bookmarks in an RTF control similar to the breakpoints used in the VB IDE.
Add Columns and Titles Effortlessly to a ListView Control: Add all of your titles to a ListView and size their column-widths with a single call to one procedure. Documentation, troubleshooting notes, and the author’s notes are contained within the code-sample. Sample Call: AddColumnsToViewBox “First”, 30, “Second”, 70.
Add a 3D Effect to Forms, Textboxes, and Labels: Make 3D forms,text boxes or labels.
Advanced Form Shaper DLL: FormShaper lets you change the shape that windows draws your forms. You can have rectangles, rounded rectangles, ellipses, polygons and any combination of the above! Even save the shapes to a file for use in other projects! See readme.txt in the zip file for more details.
Align Flexgrid Cells after Adding a Row or Column: This is used to align the flexgrid currently to center, but can be changed to something else.
An Easy ProgressBar: This is a progress bar, which I think is a lot easier to use than the one provided by Microsoft (Maybe because I wrote it???).
Animated About Form:This is an example of how you can spice up your application by using animation on your about form. It’s very simple: I just relocate and resize one image file and make it move around on the form. Hope it’s useful to someone out there.
Animated Form Unload: Sample usage (e.g., from a File | Exit button.
Animated Gif Control: OCX to display Animated Gifs in Visual Basic project.
Arrays To Columns in Text Box: This code shows how to use arrays to put columns in text boxes.
Auto Complete ComboBox Version 1.2: Included is a simple client form.
Auto-Complete Combo Box:Modified code found in MS MSDN Lib.
AutoComplete for ComboBoxAutoComplete for ComboBox :Make sure to add items to Combo1.
AutoSize ListView Column Headers:You can use this function to either autosize a single column header in a ListView control, or all of them at once.
Automatically Select ListBox Item when the Mouse is Over It: Call this function, passing the list box’s hwnd, x, and y, from the list box’s mousemove event, and the item the mouse is over will be selected.
Benchmarking and StopWatch class: This class allows you to add benchmarking and/or a stop watch to your application.