Variable Declaration in Visual Basic .Net This is a basic tutorial not just only in vb.net but also in other programming languages. This is on declaring of variables. It is gui (graphical user interface) program in vb.net that ask the…
Tag: vb.net free download source code
Visual Basic .Net Load Image in PictureBox
Visual Basic .Net Load Image in PictureBox In this program the user is allowed to browse image files such as jpeg, png and gif format, the selected image will then display into the picture box control of vb.net, information of…
Random Number guessing game in Visual Basic .Net
Random Number guessing game in Visual Basic .Net This vb.net guessing game will show to us how the random function works. The user will input a number from 1 to 10, the program will then matched that number to the…
Add, Remove item in Visual Basic .Net Listview
Add, Remove item in Visual Basic .Net Listview This vb.net program will show us on how to add, remove and load item(s) in the listview control. This program has no database, which means that the record you have added will…
Basic Calculator in Visual Basic .Net
Basic Calculator in Visual Basic .Net Hey guys! This is a basic calculator in vb.net that allows you to get the sum, difference, quotient and product of two numbers This is also available in vb6 and c# Open the project…
Lower, Upper and Proper Case in Visual Basic .Net
Lower, Upper and Proper Case in Visual Basic .Net This is a vb.net program that will convert your string into all caps, all small letter and in proper case format. Proper case means that it will capitalize the first letter…
Substring in Visual Basic .Net
Substring in Visual Basic .Net The substring will get a portion from the source string to create a new one. Mystring.substring(startIndex, lengthspecified) Substring function parameter:
Comparing Strings in Visual Basic .Net
Comparing Strings in Visual Basic .Net This is sample program in vb.net that compares the value of two strings. The user will enter value of string 1 and string 2 then selects an operator to test if it is equal…
Visual Basic .Net Populate Textbox from MS Access Database
Visual Basic .Net Populate Textbox from MS Access Database This program is the continuation of the previous program which is to connect vb.net to ms access, this time the program will populate textbox control with database value.