我在文本框中选择了日期
// 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();
然后通过单击按钮从本地文件夹加载它,然后用另一个按钮保存它。