私はC#と.NETおよびSQL Serverを使用するのは初めてです...スタッフが顧客の詳細をデータベースに登録できるように、フォームの設計を行っています。フォームには、フォームのフィールドからデータを抽出する方法と、顧客の生年月日を入力する日付ピッカーがありますが、形式とデフォルトのデータ型をiとして入力するのに少し問題があります。これをどのように行うのかわからない...私のフォームのコードを以下に示します..."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");