q1:
在fastreport中如何以打开文件夹的方式载入*.frf文件以下方法只能静态载入
    Report:=frReport1;
    WPath := ExtractFilePath(ParamStr(0));
    Report.LoadFromFile(WPath+'报表名.frf');  //载入报表
    Report.Preview:=frPreview1;
以下方法只能载入*.frp 文件
    frPreview1.LoadFromFile;  //载入报表文件q2:
 如何使用fastreport的打印方法
以下方法运行后没有检测打印机,设置页面的功能,请提示下代码如何编写 
    frPreview1.Print;  //打印  谢拉