CabinFever
Programmer
VB2008Express
I have a DataGridView bound to a database which sorts by print date (ex. 09/25/2009).
Me.mydata.Fill(Me.mydataDataSet4.myinfo)
Me.mydataBindingSource.Sort = "print date"
The data base consists of past, current and future jobs. Currently I scroll down through the list of past jobs to the find the current days jobs.
Is there a way to sort or 'autoscroll' the rows using the printdate field (compaired to the current days date) to display the rows starting with the first job of the day instead of the very first entry in the database?
I have a DataGridView bound to a database which sorts by print date (ex. 09/25/2009).
Me.mydata.Fill(Me.mydataDataSet4.myinfo)
Me.mydataBindingSource.Sort = "print date"
The data base consists of past, current and future jobs. Currently I scroll down through the list of past jobs to the find the current days jobs.
Is there a way to sort or 'autoscroll' the rows using the printdate field (compaired to the current days date) to display the rows starting with the first job of the day instead of the very first entry in the database?