Click here to Skip to main content
15,904,817 members

Comments by Valdet Zabeli (Top 4 by date)

Valdet Zabeli 24-Dec-12 8:28am View    
Paper Size - Custom 23 in; Margins - 0.5; Reportviwer all properties default
Valdet Zabeli 20-Jan-12 4:39am View    
U'r Right but it is interesting that if i attach that file normally (not using code), it doesn't delete the file
Valdet Zabeli 28-Dec-11 15:29pm View    
Ok, you were right, it really works but still couldn't solve my problem
if in table are inserted a date for every month and I want to get all data except those that are not in February i would do:
ReportData = ReportData.Where(a => a.DateField.Value.Month != 2);
it doesn't care about this condition because i have just the first month
Valdet Zabeli 28-Dec-11 10:41am View    
the only thing that i need is to change data in this query after first initialization. for example:
ReportData = ReportData.Where(a => a.DateField.Value.Month != 1);