Page 3 of 6

Re: 2 bugs report of dashboard

Posted: Thu Oct 31, 2019 3:04 am
by IamIO
Hi buddy:

About: The data area passed to the system call is too small. (exception from HResult: 0x8007007a)
There are some sugesstion for you refrernce:

The error prompt is at: marshal.structuretoptr (structobj, structptr, true); method

Error checking:
I found some materials on the Internet and found that there are some similar situations. There is a situation: when converting English, there will be no errors, but when converting Chinese, there will be errors.
I tested it. It's true. Because the program needs to use Chinese name, but when using English, there is no error prompt.
Error reason:
When the structure is laid out, no Unicode code mode is specified, so there is an error when transferring the structure to the structtoptr() method.
terms of settlement:
Use the structlayout feature to define the structure, and make it encoded in Unicode (by setting charset property)
The modified structure is defined as follows:

Before:

struct usrInfo
{
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 16)]
public char[] name;
public int ID;
}

Affter:

[StructLayout(LayoutKind.Sequential, CharSet=CharSet.Unicode)]
struct usrInfo
{
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 16)]
public char[] name;
public int ID;
}

Re: 2 bugs report of dashboard

Posted: Mon Nov 04, 2019 9:56 pm
by Lech Kulikowski
Hello,

We need some additional time to investigate the issue, we will let you know about the result.

Thank you.

Re: 2 bugs report of dashboard

Posted: Thu Nov 07, 2019 7:14 am
by Woodcutter
Hello, how much time do you need to solve these problems? We hope they can be solved as soon as possible. thanks for you attention.

Re: 2 bugs report of dashboard

Posted: Thu Nov 07, 2019 9:59 pm
by Lech Kulikowski
Hello,

We work hard on this problem and do our best to do it as fast as possible. We will let you know when the solution is available.

Thank you.
#1219

Re: 2 bugs report of dashboard

Posted: Thu Nov 14, 2019 2:57 pm
by Woodcutter
Hi Lech

The bugs still in 2019.4.2, I'm really eager to get your attention and completely repair these bugs.

I'm developer form China and a old user for your product,I believe that it is very important for every Chinese user to be able to fix these problems.

Best regards

Henry

Re: 2 bugs report of dashboard

Posted: Tue Nov 19, 2019 7:04 am
by IamIO
I believe that it's very difficult to solve these bugs. Either the updated version forgot to fix these bugs, or it won't be so long before it can't be solved. Before I fed back some bugs to Activereports, they seem to handle them faster. But I'm still used to stimulsoft :-) :cry:

Re: 2 bugs report of dashboard

Posted: Tue Nov 19, 2019 10:47 pm
by Lech Kulikowski
Hello,

We work hard on this problem and do our best to do it as fast as possible. We will let you know when the solution is available.

Thank you.

Re: 2 bugs report of dashboard

Posted: Wed Nov 20, 2019 2:05 am
by qq45228384
I also encounter the same problem, hope to solve it as soon as possible, thank you!

Re: 2 bugs report of dashboard

Posted: Wed Nov 20, 2019 2:07 am
by qq45228384
Hi,
I also encounter the same problem, hope to solve it as soon as possible.
thank you!

michael

Re: 2 bugs report of dashboard

Posted: Wed Nov 20, 2019 4:28 am
by Andrew
Hello,

Will do the best to fix it ASAP.

Thank you.