Function that returns a value in Visual Basic .Net An example of self-defined function in vb.net that returns a value. In this program we have created two functions, the first one is a function that returns a value of an…
Tag: vb.net source codes
Loops in Visual Basic .Net
Loops in Visual Basic .Net Different Types of Loop in Visual Basic .Net Types of loop included in this program: Do Do while Do until For loop
Treeview Control in Visual Basic .Net
Treeview Control in Visual Basic .Net A tree-view control is a window that displays a hierarchical list of items, such as the headings in a document, the entries in an index, or the files and directories on a disk. In…
Simple Login Form in Visual Basic.Net
Simple Login Form in Visual Basic.Net This is a simple login form that has no database. The program compares the value entered by the user to the value assigned to username and password field. A step by step tutorial on…
Radio Button in Visual Basic.Net
Radio Button in Visual Basic.Net A radio button or option button is a graphical control element that allows the user to choose only one of a predefined set of options. This is a simple program in vb.net that allows the…
Add and Remove item in Visual Basic.Net Listbox
Add and Remove item in Visual Basic.Net Listbox PDF tutorial and source code on how to create a program in vb.net that allows you to add and remove item in a listbox control.
Check box in Visual Basic.Net
Check box in Visual Basic.Net CheckBox Control allows you to check or select multiple options in a given choices. To understand more on how the checkbox works, here is the code:
PasswordChar Property in Visual Basic.Net
PasswordChar property in vb.net PasswordChar property is used in order to hide the actual text you have entered in a textbox. The source code will teach you on how to change the passwordchar property in runtime environment.
Progressbar Demo in Visual Basic.Net
A progress bar is a graphical control element used to visualize the progression of an extended computer operation. Splash screen or start up form is the first form that we usually see when we open a program or an application
Login Form without Database in Visual Basic .Net
Problem: Create a program in visual basic .net that will let the user to enter a username and password then the program will check if the username and password combination matches to the criteria set by the program. Note: the…