Hi Team,
When doing some research on radmaskedittextbox(DateFormat) i observed the following things.
1.By default maskedittextbox is allowing user to select only date between 1st of current month and
current date.
2.it is not allowing back date and also future date.
3.I am not able to clear the default date of radmaskedittextbox(DateFormat) in runtime.
but in my application i want to allow back date and also future date.please tell me how to achieve this.
My Code snippet:
private void rcStartDate_SelectionChanged(object sender, EventArgs e)
{
rmebStartDate.Clear();
rmebStartDate.Text = "";
rmebEndDate.Value = "";
rmebStartDate.Text = rcStartDate.SelectedDate.ToShortDateString().ToString();
rcStartDate.Visible = false;
}
Thanks
Ulaga
When doing some research on radmaskedittextbox(DateFormat) i observed the following things.
1.By default maskedittextbox is allowing user to select only date between 1st of current month and
current date.
2.it is not allowing back date and also future date.
3.I am not able to clear the default date of radmaskedittextbox(DateFormat) in runtime.
but in my application i want to allow back date and also future date.please tell me how to achieve this.
My Code snippet:
private void rcStartDate_SelectionChanged(object sender, EventArgs e)
{
rmebStartDate.Clear();
rmebStartDate.Text = "";
rmebEndDate.Value = "";
rmebStartDate.Text = rcStartDate.SelectedDate.ToShortDateString().ToString();
rcStartDate.Visible = false;
}
Thanks
Ulaga