我不熟悉使用C#和.NET以及SQL Server ......我正在进行表单设计,以允许员工将客户的详细信息注册到数据库。在形式我有从表单中的字段中提取数据的方法,以及输入客户的出生日期的日期选择器,但是我发现输入格式和默认数据类型有点麻烦,因为我我不确定我是怎么做的......我的表格代码如下所示......“dobTP”是我的日期选择框的名称:
SAF.AddNewCustomer(CustomerFirstName, CustomerLastName, CustomerContactNumber, dobTP, CustomerUsername, CustomerPassword, CustomerAddress, CustomerLicense, CustomerCreditCard);
txtCustomerFirst.Text = "";
txtCustomerLast.Text = "";
txtCustomerContact.Text = "";
dobTP ??
txtCustomerUsername.Text = "";
txtCustomerPassword.Text = "";
txtCustomerAddress.Text = "";
txtCustomerLicense.Text = "";
txtCustomerCredit.Text = "";
MessageBox.Show("Customer Created");
答案 0 :(得分:1)
您使用的是哪个DatePicker控件?
这是我的经验,大多数支持属性,可能称为SelectedDate,可以为 DateTime?类型。通过将此值设置为null,它将重置DatePicker。
如果要重置.NET DateTimePicker控件,则其Value属性不可为空。有一种解决方法可以清除它,虽然我从来没有尝试过。以下是显示变通方法的链接:http://dotnetref.blogspot.com/2009/03/setting-datetimepicker-to-blank-value.html。