请教一个问题
/ create report instance
Report report = new Report();
// load the existing report
report.Load(Application.StartupPath + @"\bbc.frx");
// register the dataset
report.RegisterData(rDataSet);
// run the report
report.Show();
// free resources used by report
report.Dispose();
这是c#调用fast report 这样会先预览然后让我选择打印,谁能给改下,我想不预览直接打印.