本文介绍了datetime picker cntrol的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我使用以下代码在datetime选择器中设置null值。


dtInsuranceDate.Text = row [" DateInsured"]。ToString();我正在从数据库行中分配值


如果  dtInsuranceDate.Text = '01 -01-1900 '和 当我点击日期时间选择器以使用正确的日期更新值时, 我怎么能带来 当前日期 作为日历弹出窗口的默认值而不是
到01-01-1900。任何帮助将不胜感激

 

dtInsuranceDate.Text = row [" DateInsured"]。ToString();

if(dtInsuranceDate.Value.ToShortDateString()==" 01/01/1900")
{
dtInsuranceDate.Format = DateTimePickerFormat.Custom;
dtInsuranceDate.CustomFormat ="英寸;
checkBox3.Checked = true;

}

感谢


Pol





polachan

解决方案


这篇关于datetime picker cntrol的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-19 03:03