Options of designer
Hello,
my 1st post [img]style_emoticons/<#EMO_DIR#>/rolleyes.gif" style="vertical-align:middle" emoid=":rolleyes:" border="0" alt="rolleyes.gif" /> I create a report dynamic during Application Access: FReport := TFrxReport.Create(self); The I load the report from a blob (oracle) After that I start the designer to edit this report: FReport.DesignReport(true); works fine. But what I want: I do not need the question to save the report, because I save it in the Database. How to disable that? Regards mcinternet[/img]
my 1st post [img]style_emoticons/<#EMO_DIR#>/rolleyes.gif" style="vertical-align:middle" emoid=":rolleyes:" border="0" alt="rolleyes.gif" /> I create a report dynamic during Application Access: FReport := TFrxReport.Create(self); The I load the report from a blob (oracle) After that I start the designer to edit this report: FReport.DesignReport(true); works fine. But what I want: I do not need the question to save the report, because I save it in the Database. How to disable that? Regards mcinternet[/img]
Comments
// now that youhave created the report object
//set any options here
frreport.storeindfm := false;