I am using two tables and from an Oracle database (LOCALDATE [adoRecordSource],MWHActuals [adoDataSource).
I want the user to select a day (01/22/2002) from a DataComboBox (from LOCALDATE) dropdown menu, click a SEARCH command button (cmdGetData), and populate a datagrid(grdMWHActuals). The datagrid's data source (MWHActuals) contains two months of data. I need it to re-query from the datagrid source (adoDataSource)and present only that day's data requested. Both tabels have UTCTIME and LOCALTIME fields.
I can get a date from LOCALDATE to be selected then show up in the DataCombo box, but do not know how to use it via the command button and ADOs to recreate a where clause to only show 'that' day in the grid.
Anyone ever do this?