codetoad.com
  ASP Shopping CartForum & BBS
  - all for $20 from CodeToad Plus!
  
  Home || ASP | ASP.Net | C++/C# | DHTML | HTML | Java | Javascript | Perl | VB | XML || CodeToad Plus! || Forums || RAM 
Search Site:


Complete Visual Basic Articles List

MP3 Organizer
by Philipos Sakellaropoulos (9/19/2003)
This complete VB program helps you organize your MP3 files stored in CD-ROM disks or hard-disk folders.

better XOR Encryption with a readable string
by Sebastian L. (7/1/2003)
XOR En/Decryption that gives you a readable string (doesn´t contain any special chars) that can be saved as preference or somewhat else, there are other routines that make a nice XOR but the encoded string is not usable because it contains wrongs chars that make your string unusable and undecodable

Creating a watermark in Excel with VBA
by Kenneth Ives (3/30/2003)
Adding a watermark to an Excel spreadsheet using VBA.

Beginning Resource Files in Visual Basic
by Kenneth Ives (3/30/2003)
Have you ever wanted to use graphics, such as icons, bitmaps, cursors, and AVI files? How about sound or even message box text? This can be an enormous amount of overhead. These are all examples of more files to keep track of when you distribute an application, DLL, or OCX. Lets find out how resource files can help....

Visual Basic FileSystemObject Wrapper v2.5
by Kenneth Ives (3/29/2003)
DLL with several routines to make use of the Scripting.FileSystemObject. Be sure to make a reference to "Microsoft Scripting Runtime" (scrrun.dll) in your project.

Visual Basic CryptoAPI Demo Version 1.7
by Kenneth Ives (3/29/2003)
This is a detailed demonstration Microsoft's CryptoAPI. It shows you how to use passwords, hash algorithms, encrypting strings, and files.

Count Lines of Code in any Application or Module
by Kenneth Ives (3/29/2003)
This application will count the number of lines of code in Visual Basic projects as a whole or any selected modlue (.frm, .cls, .bas, .dsr, etc.). It generates a report breaking down lines into number of actual code lines, function declarations, blank lines, and comments. You can save and view these reports with this application as well.

Visual Basic Compact/Repair Access Database Utility
by Kenneth Ives (3/29/2003)
This utility will compact and repair the access database you select. It is actually more convenient to use this utility than do the same task with Access, because you don't have to save the database with a different name and then delete the old database when you are done: here, a temporary copy of the database is automatically created and deleted.

Visual Basic Read and Modify the Registry
by Kenneth Ives (3/29/2003)
Perform the four basic functions to the Windows registry. Add, change, delete, and query. Allows you to to read registry values, and modify both keys and values.

Maths Behind The Bezier Curve
by Thaha Hussain (10/12/2002)
Explains how we can draw a Bezier Curve! The maths behind a Cubic Bezier.Very simple. No API's used. Key words : paint brush, draw, curve, graphics, picture, technique, smooth curve

Generate your own Random Numbers
by Thaha Hussain (10/12/2002)
This simple program generates random numbers using the basic mathematical methods.

Odd Magic Square
by Thaha Hussain (10/12/2002)
Magic square is a set of numbers arranged in a particular order whose column-wise, row-wise and diagonal-wise sums are all the same. This program explains the mathematics behind an odd magic square. Magic, Fun, Maths, Interesting, Easy even for beginners and excellent!!

Rainbow Generator
by Thaha Hussain (10/12/2002)
This is an extremly simple Rainbow Generator. See how a rainbow is generated with the varaitions in the values of primary colors - Red, Green and Blue. No APIs used.

Open a File With Its Associated Application
by Thaha Hussain (10/12/2002)
This application demonstrates the ShellExecute API function, which can open a file with its associated application.

Analog Clock
by Thaha Hussain (10/12/2002)
This program demonstrates Thaha Hussain's Clock Work Formula to paint an Analogue Clock.

Stop Forms from Flickering while updating Controls
by Brian Gillham (8/26/2002)
Stop Forms from Flickering while updating Controls

Secure Encryption
by Brian Gillham (8/26/2002)
This class will securely encode and decode any and all words passed to it. Please review the read me file for information about its usage

Retrieve ONLY the requested part of a File Name
by Brian Gillham (8/26/2002)
Function to return the Name, Extension , Name and Extension or Path from a fully qualified path.

Remove all Occurrences of a Character in a String
by Brian Gillham (8/26/2002)
Remove all Occurrences of a Character in a String

Generate License Keys (such as CD keys on Microsoft software)
by Brian Gillham (8/26/2002)
This class allows you to generate license keys, such as the CD keys on the case of most Microsoft software

Generate an Array of Unique Random Numbers
by Brian Gillham (8/26/2002)
This function will generate an ARRAY of TRULY random numbers.

Extract Text from Within Tags
by Brian Gillham (8/26/2002)
This is a function which will extract text within a string given a start and end tag

Determine if the app is running in the IDE
by Brian Gillham (8/26/2002)
Often a developer needs to know if the app is running from the IDE. Here is a VERY simple way of determining that.

Determine if a Value Exists in an Array without Looping
by Brian Gillham (8/26/2002)
This function is very handy for checking whether a value exists in an Array.

Determine if a Given Year is a Leap Year
by Brian Gillham (8/26/2002)
A short script to determine if a Given Year is a Leap Year

Change Cursor to Hour Glass
by Brian Gillham (8/26/2002)
A simple script to change the cursor to an hour glass.

Automate Outlook Via ADO
by Brian Gillham (8/24/2002)
Access any of the folders of Outlook from within your Visual Basic project

Various Active X controls -- Font picker, Splitter, Hyperlink, and More
by Brian Gillham (8/24/2002)
Various Active X controls, including font picker, Enhanced File Dialog, Splitter, and HyperLink. Includes a sample project. Recently upgraded to include a tray icon control.

SystemInfo Class and SystemInfo.dll
by Brian Gillham (8/24/2002)
The SystemInfo class encapsulates a variety of API calls that provide system information -- such as Free Memory, Free Hard Disk Space, and Screen Resolution --into Visual Basic properties and functions

Data Shaping and And Data Object Information Using ADODB and ADOX
by Brian Gillham (8/24/2002)
his class allows you to obtain information about a database using ADOX, Microsoft's new extensions to ADO that allow you to set and read information about database objects such as tables, fields, and indexes.

All Purpose Utilities Classes
by Brian Gillham (8/24/2002)
This includes a set of classes and functions in a module with many utilities you likely would use on a regular basis, including registry, locale, and system classes; string and date handling functions; and lots more

ADO Utilities Class Version 2.0
by Brian Gillham (8/23/2002)
This class encapsulates many routine tasks in ADO programming, which reduces the tedium and increases the reusability of your code.

DigitBox OCX
by Greg DeBacker (8/23/2002)
DigitBox displays Digits that look like the LED displays of yore. Digits come in 3 colors, 2 sizes, 4 formats, left and right justify, along with an error display. Numbers can be positive or negative.

VB Code Spell Checker
by Greg DeBacker (8/23/2002)
This is a must have for every programmer. This sample project will spell check every Caption, Text, and List property in your project, along with all string variables and all MsgBox calls. It will also list information about the Project itself

Fully Featured Print Preview DLL
by Leontti A. Ramos M (8/2/2002)
A production quality component brings print preview capabilities without 3rd-party controls. Features font rotation, zoom ratios, in place host, exporting to html, cvs and text, printed page range smart selector

Database Access Classes via ODBC
by Leontti A. Ramos M (8/2/2002)
This is a set of classes to access databases via ODBC using the API in VB. Useful for small projects where the Data Access Components would be too heavy to carry with the project.

Fading Command Button
by by Leontti A. Ramos M. (8/2/2002)
The purpose of this demos is to show an implementation of fading effect for controls.

Set Transparency Level of Windows Taskbar (Windows 2000)
by Leontti A. Ramos M. (8/2/2002)

Visual Studio Style Tabs Control
by Leontti A. Ramos M. (8/2/2002)
This is a lightweight control (just 84kb compiled) that adds Visual Studio style tabs to your projects. With a small footprint, this dll is a good start point to enhance your app user interface.

Create an SQL ODBC DSN (Data Source Name) in a VB Program
by Duncan James (6/30/2002)
This source code allows you to set up a Data Source Name for SQL Server from within your VB project.

How to Create and Use a Custom Cursor in Visual Basic
by Jeff Anderson (3/31/2002)
Create a dynamic-link library (DLL) containing mouse cursors that can be used in a Microsoft Visual Basic application.









CodeToad Experts

Can't find the answer?
Our Site experts are answering questions for free in the CodeToad forums
//








Recent Forum Threads
• mkdirs
• Re: Web Development Project
• ** Site Hacked ** javascript inserted...
• Losing background/text color when converting HTML to PDF
• hidden div block when displayed, displays at an offset of 200px only in IE 6..
• help - sketch
• Re: Perl Script - File Handling.
• Open a file from website
• Re: to open 5 terminals from one and also execute different commands on each terminal


Recent Articles
ASP GetTempName
Decode and Encode UTF-8
ASP GetFile
ASP FolderExists
ASP FileExists
ASP OpenTextFile
ASP FilesystemObject
ASP CreateFolder
ASP CreateTextFile
Javascript Get Selected Text


© Copyright codetoad.com 2001-2008