Please open up the attached report in the designer along with windows task manager, keep an eye on the Designer.exe working set (memory).
Notice how it keeps getting higher when I just move around on the parentInfo tab the panel12 (I think it’s with any panel or text box but I am just giving this as an example). Why is the memory jumping so high?
If I move just about 10 textboxes can get the memory to go over a million K which is terrible.
Do you know how long it would take to fix such a thing? my app is set to crash when it uses 1 million K and therefore I can’t even edit this report without it crashing.
Thanks
out of memory issue
out of memory issue
- Attachments
-
- outOfMemoryIssue.mrt
- (3.85 MiB) Downloaded 163 times
Re: out of memory issue
Hello.
We have reproduced your issue. This issue is because of the garbage collector. The whole report is saved for a right working of the Undo feature.
And the GC.Collect() method don't clean memory in time.
Please, try to set next option:
Thank you.
We have reproduced your issue. This issue is because of the garbage collector. The whole report is saved for a right working of the Undo feature.
And the GC.Collect() method don't clean memory in time.
Please, try to set next option:
Code: Select all
StiOptions.Designer.AdvancedModeOfUndoRedoService = false;
Re: out of memory issue
Can you please send me the report with how this is done? can this be set in an event? I can't edit my code directly.
Re: out of memory issue
Hello.
This is a static option of the Designer. It should be set before initialization of the Designer or you could create the Options.xml file with Options Helper and put it in the same folder with Designer.
Thank you.
This is a static option of the Designer. It should be set before initialization of the Designer or you could create the Options.xml file with Options Helper and put it in the same folder with Designer.
Thank you.