Software Programs and Projects

This Software Programs and Projects include programing tips and technology using different languages like VC++,ASP,JSP C#.Net,PHP,VB.Net,JavaScript,ASP.NET .Software Programs and Projects blog mainly support to software programmers and provide help through the mail.

How can clear listbox control selection using C#.Net

#region Clear Listbox Control

private void ClearListBoxControlSelection(ListBox listBoxItem)
{
for (int iIndex = 0; iIndex < listBoxItem.Items.Count; iIndex++)
{
listBoxItem.SetSelected(iIndex, false);
}
}

#endregion


tags:- How can clear listbox controls selection in C#.Net

0 comments:

Post a Comment

Post a Comment