2 bugs report of dashboard

Stimulsoft Dashboards.WIN discussion
IamIO
Posts: 4
Joined: Mon Oct 28, 2019 4:25 am

Re: 2 bugs report of dashboard

Post 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;
}
Lech Kulikowski
Posts: 6197
Joined: Tue Mar 20, 2018 5:34 am

Re: 2 bugs report of dashboard

Post by Lech Kulikowski »

Hello,

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

Thank you.
User avatar
Woodcutter
Posts: 44
Joined: Wed Mar 01, 2017 2:17 am

Re: 2 bugs report of dashboard

Post 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.
Lech Kulikowski
Posts: 6197
Joined: Tue Mar 20, 2018 5:34 am

Re: 2 bugs report of dashboard

Post 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
User avatar
Woodcutter
Posts: 44
Joined: Wed Mar 01, 2017 2:17 am

Re: 2 bugs report of dashboard

Post 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
IamIO
Posts: 4
Joined: Mon Oct 28, 2019 4:25 am

Re: 2 bugs report of dashboard

Post 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:
Lech Kulikowski
Posts: 6197
Joined: Tue Mar 20, 2018 5:34 am

Re: 2 bugs report of dashboard

Post 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.
qq45228384
Posts: 2
Joined: Wed Nov 20, 2019 1:49 am

Re: 2 bugs report of dashboard

Post by qq45228384 »

I also encounter the same problem, hope to solve it as soon as possible, thank you!
qq45228384
Posts: 2
Joined: Wed Nov 20, 2019 1:49 am

Re: 2 bugs report of dashboard

Post by qq45228384 »

Hi,
I also encounter the same problem, hope to solve it as soon as possible.
thank you!

michael
Andrew
Posts: 4104
Joined: Fri Jun 09, 2006 3:58 am

Re: 2 bugs report of dashboard

Post by Andrew »

Hello,

Will do the best to fix it ASAP.

Thank you.
Post Reply