2016-02-11 286 views
0

我的程序讀取從SQL Server的數據是這樣的:日期時間比較

if (!reader.IsDBNull(4)) 
{ 
    message.WazneDo = reader.GetDateTime(4); 
} 

此代碼讀取SQL Server日期時間。然後,我將其加載到datagridview的:

WypozyczZwrocDb _dost1 = new WypozyczZwrocDb(); 
Global.listWypozyczZwroc = _dost1.PokazZar(); 
Global.fMain.Tabela.DataSource = Global.listWypozyczZwroc; 

如何用今天的日期比較?我想改變行的顏色。

我想:

DateTime dzis = DateTime.Now; 

if(Tabela.Rows[Tabela.CurrentCell.RowIndex].Cells[4].Value > dzis) 

if(Tabela.Rows[Tabela.CurrentCell.RowIndex].Cells[4].Value > dzis.ToString()) 

回答