Listbox

No Duplication of Item in ListBox using VB 6.0

Submitted by donbermoy on
In this tutorial, we will create a program that can filter duplication inside our ListBox when we input the same text in the TextBox. Now, let's start this tutorial! 1.Let's start this tutorial by following the following steps in Microsoft Visual Basic 6.0: Open Microsoft Visual Basic 6.0, click Choose Standard EXE, and click Open. 2.Next, add only one Button named Command1 and labeled it as "Add Item", one TextBox named Text1 and make it as empty, and one LitBox named List1

Get the Most Repeated Text in a ListBox using VB.NET

Submitted by donbermoy on
In this article, we will create a program that can determine the most repeated string or text inputted that is displayed in the ListBox. Now, let's start this tutorial! 1. Let's start with creating a Windows Form Application for this tutorial by following the following steps in Microsoft Visual Studio: Go to File, click New Project, and choose Windows Application. 2.

ListBox Adding and Removing an Item in VB.NET

Submitted by donbermoy on
ListBox is a control that displays a collection of items. More than one item in a ListBox is visible at a time. You can either populate the ListBox control directly, or bind it to a collection of items. In this tutorial, i will discuss some events in ListBox such as adding and removing an item in a ListBox. So, now let's start this tutorial! 1.

ListBox control

Submitted by joken on
A Listbox control allows user to select a single element or an item from a list. And it allows the programmer to add an item(s) at design time or at runtime. This time,open visual basic and create a new application and save it as “listboxcontrol”. Then add a listbox from the toolbox, and it should look like as shown below. Then we can populate the listbox using the window properties. Here’s the following steps 1. Select listbox control 2. Go to the properties window 3.

A simple class to populate and reset a listbox and a combbox

Submitted by Garouda on
Last year, in March 2010, I started writing a comprehensive school management application that I called SMART (School Management Application for Registrars and Teachers) This was in VB6 with SQL ADO and Microsoft Jet (Database engine of Access) I challenged myself and I am now migrating to VB.Net and SQL Server.