Click here to Skip to main content
15,908,618 members

Comments by Altaf Ansari89 (Top 4 by date)

Altaf Ansari89 11-Jun-15 9:57am View    
Mehdi, Thank You for reply, Dll's not Breaking, can you please explain how to update DLL at runtime
Altaf Ansari89 11-Mar-15 0:28am View    
Connection is working fine but now its showing another error : SQL Server Compact does not support calls to HasRows property if the underlying cursor is not scrollable.
Altaf Ansari89 11-Mar-15 0:05am View    
Thank You Udoyen...
Altaf Ansari89 12-Feb-15 4:56am View    
string SourcePath = @"D:\Packages\"+ "Filename";
string DestPath= @"C:\Packages\"+ "Filename";

FileInfo f1 = new FileInfo(SourcePath);
if (f1.Exists)
{
File.Copy(SourcePath , DestPath);
}