B4R Question Is there a way to clear the Stack Buffer?

demasi

Active Member
Licensed User
Longtime User
Hi! Do someone know if there's a way to clear the Stack Buffer in B4R?
I use StackBufferUsage to check the buffer used, but I don´t know any way to reset/clear/delete the stack buffer.
Thanks
 

kolbe

Active Member
Licensed User
Longtime User
Hi! Do someone know if there's a way to clear the Stack Buffer in B4R?
I use StackBufferUsage to check the buffer used, but I don´t know any way to reset/clear/delete the stack buffer.
Thanks

You can't clear this buffer nor would you want to as your program is using it as it executes code. You can change the memory available to this buffer with #StackBufferSize. The buffer will dynamically change as a sub/method uses it for the data it needs to store.
 
Upvote 0
Top