I have a DateTimePicker and Masked Textbox ,Masked Textbox almost covering all of DateTimePicker ,just down arrow key to select the date into the Masked Textbox.
Question No1. What event should I put the current code?I want the selected date to be inside the Masked textbox after it is being selected.
DateTimePicker4.Format = DateTimePickerFormat.Custom
DateTimePicker4.CustomFormat = "dd/MM/yyyy"
MT.Text = DateTimePicker4.Text
Question No2.
How can the Null value from Masked Textbox save into the database and retrives the same from database?