Replacing ConnectionString after loading

edited 11:24AM in FastReport .NET
When I load a report file and before to load it in FR, I need to replace the ConnectionString value of the MsSqlDataConnection element at runtime.


I see that ConnectionString is encrypted. Can I replace it by a connection un-encrypted string? if not, how can I do it?

Thank you

Comments

  • edited 11:24AM
    Hello,

    You may use this code:

    report.Load(...);
    DataConnectionBase conn = report.Dictionary.Connections[0];
    conn.ConnectionString = "your string";

Leave a Comment

Rich Text Editor. To edit a paragraph's style, hit tab to get to the paragraph menu. From there you will be able to pick one style. Nothing defaults to paragraph. An inline formatting menu will show up when you select text. Hit tab to get into that menu. Some elements, such as rich link embeds, images, loading indicators, and error messages may get inserted into the editor. You may navigate to these using the arrow keys inside of the editor and delete them with the delete or backspace key.