Strange error during report laoding

Stimulsoft Ultimate discussion
Post Reply
dikan
Posts: 165
Joined: Thu Jun 18, 2009 5:05 pm
Location: Serbia

Strange error during report laoding

Post by dikan »

I made wrapper for StimulSoft to use it in non .NET languages. With clarion it works well, with no issues but when I try it in WINDEV it gives me an error.
Code looks like this

static public void LoadReport(string fileName)
{
try
{
report.Load(fileName);
}
catch (Exception exception1)
{
Exception exception = exception1;
if (SupressError == 0)
{
MessageBox.Show(string.Concat("Error LoadingReport=", exception.Message));
}
}
}

and error in MessageBos is "Error LaodingReport=TypeConverter cannog convert from System.String"

What may causing this error?

Thanks in advanse,

Dikan
Lech Kulikowski
Posts: 6197
Joined: Tue Mar 20, 2018 5:34 am

Re: Strange error during report laoding

Post by Lech Kulikowski »

Hello,

Please send us a sample project that reproduces the issue for analysis.

Thank you.
Post Reply