データ型を使用してデータテーブルから変数を取得していdatetime
ます。このデータ型は"scheduledTime"
列です。私はテーブルに異なる背景色を返すシステムクロックと datatime 変数を比較しようとしています。コードで結果が得られず、ガイダンスを取得する必要があります...また"scheduledTime"
、条件でdatetime変数を定義する方法がわかりません
条件は次のとおりです。
遅い場合scheduledTime
は0-15mins
背景色が赤..
遅い場合scheduledTime
は15min-30mins
背景色が黄色..
遅い場合scheduledTime
は30mins-2hours
、背景色が緑..
//Row Rendering event
public void Row_Rendering()
{
DateTime currentTime = DateTime.New();
DateTime scheduledTime = "SCHD DTM" //<--- this is the name of the column from the table
int i = DateTime.Compare(scheduleTime,currentTime);
if (i <= 0.25)
{
Style.SelectionBackColor = Color.Red;
ForeColor = Color.White;
}
else if (i > 0.25 && i <=0.5)
{
Style.SelectionBackColor = Color.Yellow;
ForeColor = Color.Black;
}
else if (i > 0.5 && i <=2)
{
Style.SelectionBackColor = Color.Green;
ForeColor = Color.White;
}
}