Hi, I am trying to pick the particular chosen date from the windows calender displayed.
I am struck here and confused how to proceed.
Any hints or shedding little light on the progress is appreciated.
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace wintest1
{
public partial class Form1 : Form
{
public Form1()
{
SelectionRange picked = new SelectionRange();
InitializeComponent();
textBox1.Text = "Choose date from below";
if (picked != null)
{
textBox1.Text = picked.ToString();
}
}
private void calender_DateChanged(object sender, DateRangeEventArgs e)
{ }
private void textBox1_TextChanged(object sender, EventArgs e)
{ }
}
}
Thank you