Hi,
i am new to c# and i am trying to develop a form to display the calander which works fine. I am trying to make it so that when the user selects any date from my MonthCalander control, it is then displayed in a messasge box. The trouble i'm having is that it no matter which date i select, it displays by default, todays date(the current todays date).
Here is my code snippet:
namespace AddContractUI
{
public partial class newcontractform : Form
{
System.Data.OleDb.OleDbConnection con;
private string projectName;
private DateTime startDate;
public newcontractform()
{
InitializeComponent();
monthCalendar1.MaxSelectionCount = 1;
startDate = monthCalendar1.SelectionStart;
}
private void submitbtn_Click(object sender, EventArgs e)
{
MessageBox.Show("date selected was" + startDate);
this.Close();
}
// res of code skippet
}
I would be SO greatful for somebody to tell me where i am going wrong please