How to store objects in stack in vba?
Thanks for your answer.
Regards, Balu.
How to store objects in stack in vba?
Thanks for your answer.
Regards, Balu.
You can implement a stack in VBA by using a collection.
You would write simple functions to implement push and pop. Push would add the argument to the collection. Pop would return the .count Item of the collection and then remove the .count item.