How can I compile report DLL as 32bit?
Designer always create 64bit.
Best regards,
Djole
32bit dll
Re: 32bit dll
Hello, Djole.
Our Designer is compiled with AnyCPU target platform.
If you use 64bit operation system it runs in 64bit mode.
If you need to run Designer in 32bit mode, create a project with x86 target platform and run Designer from the application with next code:
Thank you.
Our Designer is compiled with AnyCPU target platform.
If you use 64bit operation system it runs in 64bit mode.
If you need to run Designer in 32bit mode, create a project with x86 target platform and run Designer from the application with next code:
Code: Select all
var report = new StiReport();
report.Design();