Open File Dialog in Visual Basic .Net The OpenFileDialog component allows you to browse the folders of your computer and select one or many files. This vb.net program will allow you to select a file on your computer and display…
Category: Visual Basic.Net
Display Date and Time in Visual Basic .Net
Display Date and Time in Visual Basic .Net Example program in visual basic.net that display the current date and time in a form
Timer in Visual Basic .Net
Timer in Visual Basic .Net Sample source code on how to use timer control in visual basic .net
Function that returns a value in Visual Basic .Net
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…
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: