Hello
I receive a StackOverflowError after about 13 recursions in my application.
I have a add form and after the users add something I want to autodisplay the add form again. So this is a recursion that can go up a few hundreds.
How can I fix this?
I don't want to recurse, can I break the recursion, or is there some other solution?
Can I empty the stack by program request?
Thank you.