I'm trying to create a VBA application that would allow for a given date (datetimepicker) to display in a datagridview a list of records (uploaded from a database) that occur before and after the given date(2 radiobuttons). What would be the best way to go about creating this application?
If I were to use a query, I would need to go to the TableAdapter and add query. The query should look like this, correct?
Select (Info needed) From dbo.Records
Next, I would need to put the Where statement, but I'm not exactly sure what to put here.
Any help would be greatly appreciated.
If I were to use a query, I would need to go to the TableAdapter and add query. The query should look like this, correct?
Select (Info needed) From dbo.Records
Next, I would need to put the Where statement, but I'm not exactly sure what to put here.
Any help would be greatly appreciated.