Visual Basics Programming

Articles in Visual Basics Programming

By Mike 4 comments
A listbox is very common control that you see in many applications. It gives the user a great view of a list of items. Here is how you add items to a listbox in VB.net... more »
By Mike 1 comments
Who doesn't like having access to help within their applications. Here is a fast and easy way you can add Microsoft's searchable help directly to your application... more »
By Mike 0 comments
This is easy if you have done some basic development. VB.net has a nice event for controls called the "EnabledChange" event. This fires when the controls enable property has been altered. Here is some nice code to see how it works... more »
By Mike 1 comments
Now that you can fill up your listbox in VB.net with a bunch of goodies, how do you erase what you have in there in case the user needs to start over? Here is how you can clear all of the contents out of your VB.net listbox... more »
By Mike 2 comments
A good way to make sure users do not click buttons on a form until they actually enter something is to keep it disabled until text is entered. Here are the steps to do just that... more »
By Mike 2 comments
Many programs that you will write will have the need to display to the user the current date and time. VB.net gives you the ability to retrieve this information failry easily. Here is how you display the current date and time to the user... more »
By eHow Computers Editor 0 comments
One valuable way to test your software code is to trace it by hand, or desk check it. Desk checking can help you spot errors in your algorithm or approach that may not be obvious when you simply run the program on a computer. To trace code by ... more »
By Mike 1 comments
VB.net offers a great function that allows you to join all of the members of an array into one string. Here is how it is done... more »
By Mike 1 comments
In this example I am going to show you how you can create a simple web browser in a just a few steps in C#... more »
By TheWalrus 0 comments
The following steps will guide you through the process of manually unbinding a Visual Studio Solution from Source Safe... more »
By TheWalrus 0 comments
So you have spent endless hours polishing your resume, browsing the job boards, talking to head-hunters, and submitting applications to potential employers. Then, one day, your hard efforts pay off: you get a call from a potential employer ... more »
By Daspawnx 1 comments
In this article I will show you how to add, remove, edit, save, load text in the list box.. more »
By Mike 1 comments
VB.net has a nice built in function that allows you to pass in two numbers and return the greater of the two. Here is how it works... more »
By Mike 4 comments
SQL offers a great way to get the average value of your data in a single statement. In my example I am going to use MS Access's Northwind Database... more »
By schalken 0 comments
Do you have problems breaking down large programming tasks into something you can work with? A few simple tricks will help you get going... more »
By Kate J 4 comments
Something on your desktop you'd like to save as an image? Need a screen shot? Here is a simple way of doing it!.. more »
By Traqqer 1 comments
One of the basic strategies in developing code is to use a loop. In Visual Basic, the “For Next” loop is one of the most useful set of commands. Here are some tips on how to use them..... more »
By Mike 1 comments
VB.net has introduced the Try-Catch-End Try statement which is to replace the On error statement. It allows you to execute some code and should an error occur it traps that error and then sends the flow of the program to the "catch" ... more »
By Mike 1 comments
The For-Next loop is a nice loop to use when you know or have an idea as to the starting number of the loop and the ending number. Here is the syntax for the "For Next" loop in C#... more »
By Vasco 1 comments
What to know before buying a computer You should have basic knowledge of PCs components.. more »
By Socrates 0 comments
There is no rule set in stone that forces people to keep a border on their application forms. That's why there's an option to turn it off... more »
By Mike 1 comments
A treeview control is similar to a listbox however it has items called nodes. A treeview control is what you would see in your windows explorer to search directories. Here is how you can add nodes at runtime... more »
By Traqqer 2 comments
Visual Basic is one of the easiest computer languages to learn, but there is still a learning curve that needs to be overcome. Perhaps the most important concept to learn about Visual Basic is that it is an event-based language meaning that the ... more »
By Mike 2 comments
The power of a relational database such as Oracle, SQL Server, MySQL and Access is the ability to relate two or more tables based on common fields. Here is how you can join two tables on a common field. I am using MS Access's Northwind database ... more »
By Mike 0 comments
There will come a time when you need to sum up values for a specific customer in your database. Here is how you do it... more »