i have 1 text box and combobox. all i want is to enter all data that is type or selected in combobox is showed in list view. can you help me to do that.? and all entered data in listview could be save in database. ^^

Try something like this:

Dim lviNew As New ListViewItem

With lviNew
    'NOTE:
    ' I always assign my unique values to the .Text property.
    ' This will make it easier to compare against a database.
    .Text = TextBox1.Text
    .SubItems.Add(ComboBox1.Text)
End With
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.