|
|
Question : Access Report - Where Condition
|
|
|
|
I'm using Visual Studio 2008 Express and Access 2007. To print Access reports from my VS app I'm using Microsoft.Office.Interop.Access.Application. I've been successful using this method when the "Where Condition" has been text or numeric, but I'm having difficulty when trying to use a date in the "Where Condition". How do I correctly pass along a DateTimePicker (dtp1) value for a field ProdDate?
Dim AdbSE As New Microsoft.Office.Interop.Access.Application AdbSE.OpenCurrentDatabase("\\Process1\db\Main Application.mdb") AdbSE.DoCmd.OpenReport("rptShiftReport2", AcView.acViewNormal, , "ProdDate=" & dtp1.value) AdbSE.CloseCurrentDatabase() AdbSE.Quit()
|
|
|
|
Answer : Access Report - Where Condition
|
|
open the subform in design view, hit F4 select the Format Tab Record Selectors NO <<< set to NO
|
|
|
|