Click here to Skip to main content
15,881,898 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I've create a listview there are two column(txtfilename, wavefilename)if load the text file path and wave file path then store the file path in ms access table(table Name:- lisviewTable) and (table column Name:- txtfilePath and WaveFilePath). please help me.....
Posted

1 solution

Hi Try this
C#
foreach(ListViewItem itm in listview1.Items)
{
string txtName=itm.Subitem[0].Text;
string WaveName=itm.Subitem[1].Text;
//write your insert query
}
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900