Thanks in advanced!
//generate time column from database
SQL row = new SQL();
DataTable lambo = row.schooltimeId();
DataRow[] dr = new DataRow[lambo.Rows.Count];
for (int i = 0; i < lambo.Rows.Count; i++)
{
dr[i] = table.NewRow();
dr[i][keys[0]] = lambo.Rows[i][0] + ConfigurationSettings.AppSettings["DASH"] + lambo.Rows[i][1];
table.Rows.Add(dr[i]);
}
Suthish NairPosted Feb 27, 2011, 12:33 PM
Suthish NairPosted Feb 25, 2011, 5:04 AM
Jaganathan BantheswaranPosted Feb 25, 2011, 3:48 AM
Question is not clear.
At run time ? or Design time ? where it should display ? All these lines of code ? or only the particular line of out put?