Page 1 of 1
Stack Organization
Posted: Sat Dec 22, 2012 5:32 pm
by lohill
I have been working on a program that consists of main stack A and substacks B, C and D. I have decided that I want to make stack C the mains stack and relegate stack A to a substack status. Is there an easy way to do that?
Thanks in advance,
Larry
Re: Stack Organization
Posted: Sat Dec 22, 2012 5:52 pm
by sturgis
Set stack C mainstack to itself in the property inspector.
Set the mainstack of stacks b and d to stack c
set the mainstack of stack a to stack c
Save stack c.
Or do it in the message box
set the mainstack of stack "c" to "c"
set the mainstack of stack "b" to "c"
set the mainstack of stack "d" to "c"
set the mainstack of stack "a" to "c"
save stack "c"
Re: Stack Organization
Posted: Sat Dec 22, 2012 6:59 pm
by lohill
Thanks sturgis,
You saved me a lot of work and worry.
Larry