Click here to Skip to main content
15,895,256 members

Comments by sunilsourav (Top 20 by date)

sunilsourav 19-Sep-23 12:43pm View    
Thanks for your response. But as it is going to effect the existing functionality so I do not want to degrade the Framework. Is there any other option available apart from using oledb or odbc ?
sunilsourav 29-Jun-15 10:20am View    
Hi,Thanks a lot for your suggestion. Now i have resolved it by extracting only 10-20 records at a time with dynamic paging implementation.
sunilsourav 29-Jun-15 10:20am View    
Hi,Thanks a lot for your suggestion. Now i have resolved it by extracting only 10-20 records at a time with dynamic paging implementation.
sunilsourav 29-Jun-15 10:18am View    
Hi,Thanks a lot for your suggestion. Now i have resolved it by extracting only 10-20 records at a time with dynamic paging implementation.
sunilsourav 26-Aug-14 1:14am View    
Actually I have solved it by using Naudio.dll. Below is the complete code for it.

TimeSpan span= GetWavFileDuration(filePath + "\\" + fileName);
string spanSeconds = span.TotalSeconds.ToString();
string []spanSecondsArray=spanSeconds.Split('.');
spanSeconds = spanSecondsArray[0].ToString();

public static TimeSpan GetWavFileDuration(string fileName)
{
WaveFileReader wf = new WaveFileReader(fileName);
return wf.TotalTime;
}