This is how I am opening the report...
=========================================
Private appAccess As Access.Application
Set appAccess = New Access.Application
strACCond = "((APHistory.POSTEDDT) Between #" & txtFDate.Text & "# And #" & txtTDate.Text & "#)"
appAccess.Visible = False
appAccess.OpenCurrentDatabase App.Path & "\APHistory.mdb", True
With appAccess.DoCmd
.OpenReport "Aphistory", acViewPreview, , strACCond
.Maximize
End With
appAccess.Visible = True
=========================================
So where is the OpenArgs in VB or Access?
John-