コード例 #1
0
        private void ButtonAccidentDate_Click(object sender, EventArgs e)
        {
            FormSurveyDate ad = new FormSurveyDate();

            ad.Text = "Select Accident Date";
            ad.setText("Select the date the accident took place.");
            ad.ShowDialog();
            accidentDate.Text = Util.SortableDate(ad.getDate());
            ad.Close();
        }