Drag and drop from listbox to textbox in vb.net
Following example shows drag and drop functionality between Listbox and Textbox using vb.net Private Sub Listbox1_Mousedown(ByVal Sender As Object, _ ByVal e As...
View ArticleAdd textbox value to a list box by clicking a button in vb.net
Following example describe to add textbox value to a list box by clicking a button in vb.net This example requires windows form that contains Listbox, Textbox and one button control.Private Sub...
View ArticleDrag and drop operation between two Listbox using vb.net
The following example demonstrates how to perform a drag and drop operation between two listbox controls in vb.net Examplethis example requires one windows form that contains Two listbox controls...
View ArticleAdd, remove And clear items in List Box in vb.net
This article demonstrate how to add, remove and clear items from listbox in vb.net Add items to ListboxListBox1.Items.Add("NewDelhi") Add items to Listbox from array You can add an array of items to...
View ArticleHow to remove duplicate items from listbox in .net
Many times when we bind our controls from a non primary column of table then it may be a case that we got the duplicate records in our dataset. There is no sense to bind duplicate records without any...
View ArticleListBox control in asp.net
ListBox control contains list of options. We can create ListBox with single option select and multiple option select functionality. We can add a list of option or items in these ways:At the time...
View ArticleAutoPostBack property of ListBox in asp.net
If we set AutoPostBack property of the ListBox to True, then form containing Listbox is submitted automatically whenever a new item is selected. Note: AutoPostback property uses client side javascript...
View ArticleHow to find selected items in ListBox in asp.net
As we know that we can use ListBox control as Single select or multiple select. If use single selection mode of the control then we can find out the selected item through SelectedIndex and...
View ArticleCreate Multiple select Listbox in asp.net
We can create only one option in ListBox control by default, but we can make this control as multiple select with the help of SelectionMode property. SelectionMode property enable us to select more...
View Article