Advertisement
Advertisement
| 04.30.2008 at 01:10PM PDT, ID: 23366716 |
|
[x]
Attachment Details
|
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: |
private void SetNextReport()
{
foreach (DataRow drow in ds1.Tables[0].Rows)
{
if ((string)drow["ReoccurInterval"] = "Monthly")
{
drow["NextReport"] = (DateTime.Now.AddYears(1));
}
}
}
//foreach (DataRow drow in ds1.Tables[0].Rows)
// //dt.rows[0]["check"]
// if (DateTime.Now >= (DateTime)drow["NextReport"])
// {
//if (DataColumn["ReoccurInterval"] = "Yearly")
//{
// ds1 = DateTime.Now.AddYears(1);
//}
// if (drow[0]["ReoccurInterval"] = "Yearly")
// {
// ds1 = DateTime.Now.AddYears(1);
// }
// else if ((string)drow["ReoccurInterval"] = "Monthly")
// {
// ds1 = DateTime.Now.AddMonths(1);
// }
// else if ((string)drow["ReoccurInterval"] = "Weekly")
// {
// ds1 = DateTime.Now.AddDays(7);
// }
// else if ((string)drow["ReoccurInterval"] = "Daily")
// {
// ds1 = DateTime.Now.AddDays(1);
// }
// else if ((string)drow["ReoccurInterval"] = "Hourly")
// {
// ds1 = DateTime.Now.AddHours(1);
// }
// // }
// }
//}
}
|