[quote="NineRays"]Please provide me with more details:
1. Do you obfuscate your app without including RSS into obfuscation?
2. What obfuscation mode (ObfuscationOptions.Member) do you using?
1. No, I am not include RSS into obfuscation.
2. I have three layer in my application:
Main.exe -- obfuscation mode full
BusinessLogic.dll -- obfuscation mode default improved
DataAccess.dll -- obfuscation mode default improved
Security.dll -- obfuscation mode full
All PE file depend on Security.dll that implement software copy protection.
Main.exe depend on BusinessLogic.dll
BusinessLogic depend on DataAccess.dll
I create report editor form using rptDesigner controls and other RSS supporting controls. I pass the reportGenerator object that created in another form that enable user to select the template to the report editor form. The template are loaded using LoadTemplate method of reportGenerator.
Both report editor form and template selection form are dialog of the MainForm.
Thank you.