I'm currently developing a windows application.
I have two forms, Form1 and Form2. They are both open.
In Form1, I have two dateTimePickers (start date and end date), two text boxes (no of records and no of days) and two buttons (submit and cancel). In Form2, I have a dataGridView that displays data from a text file.
For example, I set the start date from form1 as May 5, 2010 and end date as May 6, 2010. After i click the submit button, form2 will read the text file and display the data that are >= start date and <= end date.
I have two forms, Form1 and Form2. They are both open.
In Form1, I have two dateTimePickers (start date and end date), two text boxes (no of records and no of days) and two buttons (submit and cancel). In Form2, I have a dataGridView that displays data from a text file.
For example, I set the start date from form1 as May 5, 2010 and end date as May 6, 2010. After i click the submit button, form2 will read the text file and display the data that are >= start date and <= end date.
Comment