Paramaters per Interop

J

Jan Lorenz

Hi,

I want to show an access report per C#-Interop. I use the following code and
it works fine:

Access = Microsoft.Office.Interop.Access;
oAccess.DoCmd.OpenReport(reportName, Access.AcView.acViewPreview, "", "",
Access.AcWindowMode.acWindowNormal, System.Reflection.Missing.Value);

My problem is now, that the report prompts some paramater inputs (wanted
caption,....). How can I fill the parameters per Interop, so that the
report starts without any prompts?

Best regards
Jan
 
Top