frankp01
Comments
-
FYI, I think I found the culprit. I have 'TExtraDevices' installed. Replacing the rbRTL2027 reference with the current version resolved it. However, if I recall, the ExtraDevices was being used to generate PDF files. ReportBuilder does that natively…
-
I'll give this a shot. I more-or-less did what you suggested, but I'll be a bit more thorough. I do have DBISAM installed, so there's the DBISAM -> RB unit. But I think I had already removed that one, too. I'll keep you posted.
-
An update: since I could see no difference in the properties of the Report component, DBISAM Database or DBISAM Session in an app where it worked versus the one where it was not working, I finally just deleted the Session component and re-added it.…
-
Ah, I forgot to mention that this is with RB 7.04. I don't think Report.Parameters were fully implemented at that point, were they? This report is in a fairly old app, but if I have to I'll create a small free-standing exe just for running this repo…
-
Thanks, I'll take a look.
-
Bruce: Assuming you only have one autosearch field, this will assign the previous month to it:
var
cStart : String;
cEnd : String;
Day, Month, Year : Integer;
begin
DecodeDate(CurrentDate, Year, Month, Day…