Library code snippets tagged with visual basic
-
Create Dynamic Menu in VB
by Hari K
This coding is useful for VB Developer who are interesting to create Dynamic menu. Steps: Add form - Name - frmMain Image List - Name - imglstImages Label - Name - lblLabel Class- mcPopupMenu
-
VB6 NMEA Interpreter Class for Reading GPS
by Alex Etchells
A VB6 version of Jon Person's .NET NMEA Interpreter Class as referenced in 'How to Write a GPS Application'. GPStest.zip contains the class and a simple project demonstrating implementation.
-
Working with Excel Files Using VB6
by Adil Hussain Raza
This code snippet demonstrates how to open, read and write to excel files. The concept is very simple. Totally aimed at beginners and well commented!
-
Add Disappearing Effect To Your Forms
by Adil Hussain Raza
This is a simple piece of code to add continuously "disappearing" effect on your forms.
-
Messenger Client Coding
by Hari K
I hereby submit Messenger client side Coding . This is very useful for Beginners who are going to develop Messenger in VB. In this coding also i was using WinSock control. Datas are transfer between RemotPort.
-
Show/Hide Desktop Icons
by Adil Hussain Raza
This code uses API calls to Hide/Unhide icons on the desktop. This code uses FindWindowEx & ShowWindow API Calls to do the job.
-
Large Number Operations
by Omnilord
What do you do when you want to work with numbers that have a total length of digits that reach into the billions? You sure can't store those in a conventional variable, or perform normal operations on them. This module demonstrates how to perform these.
-
ListBoxHScroll class
by 10Tec Company
Adding the horizontal scroll bar to a list box dynamically taking into account its font (using the IFont interface) and the vertical scroll bar visibility (by analyzing the WS_VSCROLL flag of the listbox styles)
-
List Network Computers
by Jonathon Rossi
This source code will show you how to list all the computers on your local network
-
Send & Receive Emails using Winsock and POP3
by Kym Manson
Demonstrates how to send & receive emails from a POP3 server using the Winsock control.
-
Return Parent Directory for Files and Folders
by Michael Wales
This short snippet of code will return the parent directory of a directory input, or the directory of a filename input.
-
Treeview and ADO
by mohd adzhar
This code will save the treeview node when click add region/branch in Access format. When run the program the treeview will load the Access file.
-
Compact & repair MS Access database
by Mike J
Simple snippet of code to compact and repair any MS Access database.
-
ADO Utility Class
by NeverMalchik
ADO class containing useful functions - counting records, creating database from scratch, openning/closing database, filling listbox/combo box with an sql statements, manipulating records....and much more.
-
ASCII to Binary string
by Mike J
How to obtain the binary string for the ASCII code of a character.
-
Making Windows Transparent
by Yew Chin Sing
Demonstrates how to make a form in VB transparent.
-
"On Error Resume Next" considered harmful
by Palo Mraz
Discusses some unexpected implications of using the 'On Error Resume Next' statement in Visual Basic applications.
-
Register Program to Start Up Automatically
by Yew Chin Sing
Demonstrates some VB code to register your application to automatically startup (in the registry).
-
Basic ADODC Example
by Moriel Schottlender
Too all you newbies out there, This is something I wrote for a friend of mine, teaching how to use the basic extraction-from-db utilities. It shows how you can link an Access database using the ADODC Component. It includes thorough explanations and examples. It really is teaching the basics of ADODC components - nothing fancy - I just remembered my own time as a beginner, trying to search for new ways to learn. I hope it will help you :) ~moo
-
Decimal Integer to Binary String
by Michael H
Converts an Integer up to 65535 to a String of Binary digits.