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
Strange error during report laoding
-
- Posts: 5253
- Joined: Tue Mar 20, 2018 5:34 am
Re: Strange error during report laoding
Hello,
Please send us a sample project that reproduces the issue for analysis.
Thank you.
Please send us a sample project that reproduces the issue for analysis.
Thank you.