Its me again i figured out how to save a row in a ListView into an ACCESS DB its something like this...
Private Sub Command2_Click()
With adoRecordSet
.AddNew
.Fields!Name = itemToAdd.SubItems(1)
.Fields!Address = itemToAdd.SubItems(2)
.Fields!Phone = itemToAdd.SubItems(3)
.Update
End With
...but this only saves the first row.... i want to save all the rows at the same time with just one click of the command button..... Hope someone could help me..... Thanks.... Maraming Salamat :mrgreen: