Page 1 of 1

32bit dll

Posted: Thu Oct 15, 2015 11:52 am
by dikan
How can I compile report DLL as 32bit?

Designer always create 64bit.

Best regards,

Djole

Re: 32bit dll

Posted: Thu Oct 15, 2015 1:52 pm
by HighAley
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:

Code: Select all

var report = new StiReport();
report.Design();
Thank you.