Home General
New Blog Posts: Merging Reports - Part 1 and Part 2

RBuilder 22.01 Build 99 change RBuilder.ini folder

We can no longer write to RBuilder.ini in the windows system directory and I've been all over (I think) the designer without finding a IniStorageName property or if necessary, how to access this property in code. I would appreciate any help you can offer. Thanks Bob

Comments

  • edited December 12
    Hi Robert,

    By default (for new reports) the RBuilder.ini file is saved in the Local AppData directory which is not restricted. C:\Users\\AppData\Local\RBuilder

    If you are using an older application that still saves to the system directory, you can either change the ini location using the IniStorageName property of the TppDesigner component or in code using the TppIniStoragePlugin class.
    uses
    ppIniStorage;

    ...

    begin
    TppIniStoragePlugin.SetStorageName('c:\Temp\RBuilder.ini');

    ppReport.Print;

    end;
    Best Regards,

    Nico Cizik
    Digital Metaphors
    http://www.digital-metaphors.com
  • Thanks Nico, I'm almost certain it wasn't there before., but it's all there now :-) .. I've been using RBuilder for a long time...since Nard on boarded me years ago... might be time for me to retire. Bob
Sign In or Register to comment.