Click here to Skip to main content
15,884,908 members
Articles / Programming Languages / Visual Basic
Article

Customized ListView Control

Rate me:
Please Sign up or sign in to vote.
3.35/5 (14 votes)
25 Feb 20053 min read 158.7K   2.1K   46   9
This is a customized ListView control having facility for sorting, finding an element in the list, selecting necessary rows from the list by using a checkbox, selecting all rows in the list and inverting the selection.

Introduction

This is a customized ListView control having facility for sorting, finding an element in the list, selecting necessary rows from the list by using a checkbox, selecting all rows in the list and inverting the selection.

And also, this control has the provision to fetch data from three different types of data sources (Jet, Oracle & SQL Server) just by specifying the following necessary inputs. Given below are the Connection properties in the control. In the Property window, these will be shows in the Category called “Connection”.

  • DataSource

    This property is used to specify the data source for the connection.

  • Password

    This property is used to specify the password for the database to open it in the connection.

  • Provider

    This property informs the connection about the type of database (Jet/Oracle/SQL Server) from which we are going to fetch the data to the control.

  • UserId

    This property is used to specify the UserId for the database to the open the connection.

Given below are the other ListView properties in the control. In the Property window, these will be shown in the Category called “Listview Settings”.

  • Checkboxes

    This will tell the control whether we need the checkbox in the ListView or not.

  • EasyMultiSelect

    This will tell the control whether to display the selected item in the bottom or not.

  • EasySelect

    This will tell the control whether we need the “Select All” and “Invert” buttons or not.

  • FieldDescriptionList

    Used to specify the column name for the ListView columns.

  • FieldNameList

    Used to specify the database column from which data is to be displayed in columns in the ListView.

  • FieldSizeList

    Used to specify the column size for the ListView columns.

  • FullRowSelect

    Turn On/Off the FullRowSelection in the ListView.

  • GridLines

    Turn On/Off the GridLines in the ListView.

  • QueryName

    Specify the SQL statement to be used to fetch data from the database to the ListView.

In the ListView control, there are two non-browsable properties:

  • SelectedItems

    This will return the list of items selected from the ListView.

  • SelectedRows

    This is a ReadOnly property that will return the deleted rows as a DataSet.

Technical part of this control

  • When we load the user defined control in the toolbox, it will have the ListView control icon instead of the default icon.
  • Grouping the properties under certain categories in the Property window.
  • Description for each and every property.

The above mentioned things are established in the control using the “System.ComponentModel”, by using the following attributes:

  • <ToolboxBitmap>

    This attribute is used to specify the icon for the user control.

  • <Description>

    This attribute is used to specify a short description about a property.

  • <Category>

    This attribute is used to place a property in the desired category.

E.g.:

VB
<ToolboxBitmap(GetType(ListView))> _
Public Class ListSelected
<Description("On/Off the Checkbox in Listview"), Category("Listview Settings")> _
    Public Property Checkboxes() As Boolean
        Get
            Checkboxes = LstView.CheckBoxes
        End Get
        Set(ByVal New_Checkboxes As Boolean)
            LstView.CheckBoxes = New_Checkboxes
        End Set
    End Class

Sorting

Custom class (LstSort) implements the IComparable interface and overrides the Compare function with its own code. Take that class and set the ListViewItemSorter property of the ListView equal to it.

Have a look at how it is used in the column click event of the ListView object. Given below is the screenshot of the Design Time Property Sheet of the custom ListView:

Image 1

How to use the control

Re-build the control and load this control in your own project. Set the properties as in the property sheet in the above screen shot, and then run the application.

The test application screenshot is as follows. I just placed the control and set the properties as mentioned above.

Image 2

If we click on the “Selected Items” button, the screen will look like this:

Image 3

If we click on the “Selected Rows” button, the screen will look like this:

Image 4

If we press the ‘OK’ button, it will show the next selected row in the message box.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
Kuwait Kuwait
I am J. Franklin Kennedy, Working as a programmer in application software developement.


Comments and Discussions

 
GeneralGood Control! Pin
Lucky_Lu993-Jul-08 16:17
Lucky_Lu993-Jul-08 16:17 
Generalexcellent Pin
goodyboy25-Jun-08 4:24
goodyboy25-Jun-08 4:24 
GeneralSorry but this is quite poor Pin
alsdanm8-Oct-07 9:43
alsdanm8-Oct-07 9:43 
GeneralTo add a check bok in listview Pin
Member 315330418-Jan-07 1:42
Member 315330418-Jan-07 1:42 
QuestionGet ting rid of the extra column on the right Pin
rb9830-Aug-06 6:44
rb9830-Aug-06 6:44 
AnswerRe: Get ting rid of the extra column on the right Pin
AcidRaZor11-Oct-06 21:35
AcidRaZor11-Oct-06 21:35 
GeneralHide Column Pin
Vitoto6-Jul-05 9:27
Vitoto6-Jul-05 9:27 
GeneralRe: Hide Column Pin
AcidRaZor11-Oct-06 21:38
AcidRaZor11-Oct-06 21:38 
QuestionAddition of a search for the file. ? Pin
claudetom017-Mar-05 2:46
claudetom017-Mar-05 2:46 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.