テキストボックスで日付を選択しています
// Create a SelectionRange object and set its Start and End properties.
SelectionRange sr = new SelectionRange();
sr.Start = DateTime.Parse(this.richTextBox1.Text);
sr.End = DateTime.Parse(this.textBox3.Text);
/* Assign the SelectionRange object to the
SelectionRange property of the MonthCalendar control. */
this.monthCalendar1.SelectionRange = sr;
this.richTextBox1.LoadFile(@"C:\a.txt", RichTextBoxStreamType.PlainText);
そして、日付ごとに特定のテキストファイルをロードしたいと思います(例: 25/5/2013 --2552013.txt
どうすればできますか?から / を取り出そうと考えています
this.richTextBox1.Text = monthCalendar1.SelectionRange.Start.Date.ToShortDateString();
後でボタンをクリックしてローカルフォルダーからロードし、別のボタンで保存します。