Pre2016.1.28 DesignV2WithWpf
Posted: Wed Sep 21, 2016 2:33 pm
Hello,
in your Prerelease 2016.1.28 StiReport.DesignV2WithWpf() don't work, throws a exception.
I examined the problem and found: Stimulsoft.Client.Designer.Native.StiWpfDeignerLauncher, this is not a valid type! "Deigner" --> spelling mistake !
Greetings
in your Prerelease 2016.1.28 StiReport.DesignV2WithWpf() don't work, throws a exception.
I examined the problem and found: Stimulsoft.Client.Designer.Native.StiWpfDeignerLauncher, this is not a valid type! "Deigner" --> spelling mistake !
Code: Select all
/// <summary>
/// Internal use only.
/// </summary>
/// <returns>Returns the Designer of the report.</returns>
internal IStiDeignerLauncher PrepareForDesignV2WithWpf()
{
Type type = Type.GetType("Stimulsoft.Client.Designer.Native.StiWpfDeignerLauncher, Stimulsoft.Client.Designer, Version=2016.1.28.0, Culture=neutral, PublicKeyToken=ebe6666cba19647a");
if (type == null)
{
throw new Exception("Assembly 'Stimulsoft.Client.Designer' is not found!");
}
IStiDeignerLauncher stiDeignerLauncher = StiActivator.CreateObject(type, new object[0]) as IStiDeignerLauncher;
StiDictionary.DoAutoSynchronize(this);
return stiDeignerLauncher;
}