Search code examples
livecode

How to mimic Form subform in livecode


I am a seasoned msaccess developer but new to livecode. I want to mimic the form/subform functionality of msaccess in a livecode application. I need some ideas on how to achieve that


Solution

  • You can make your own example. Make a new mainStack. Now make another mainstack, or a substack, resize it smaller than the first one, and overlay it.

    You will need to manage which one is on top, and note that there are other stack modes that will do this for you, but in the meantime look up "the defaultStack" in the dictionary.

    The two stacks give you all the power and flexibility you could possibly need, since each is on its own, and can contain any arbitrary functionality.

    Craig