Crash with the dashboards
Hey guys !
I'm trying to add a dashboard to my project and when I want to add variables to it, the app crashes.
I can add dashboards + variables to other projects, but not this one. Any idea where this could come from ?
76 Views


Sebastien, many thanks for sending me the task file!
It turned out to be a previously unknown bug in the Dashboard element. The issue is caused by the 2D array declared in the Header:
int[,] myCapys = new int[100, 4];
When you press Select Variables in the Dashboard editor, EventIDE fails while parsing the values of that array.
We’ll fix this in the upcoming update, but for now you can apply a simple workaround by marking the array as internal:
internal int[,] myCapys = new int[100, 4];
The internal keyword tells EventIDE not to treat this variable as a proxy variable, so it will be ignored by the Dashboard system but will still work in all your code as before.
I hope this helps others — and thanks again for spotting and reporting the issue!