Display a dialog without blocking.

This site uses cookies. By continuing to browse this site, you are agreeing to our Cookie Policy.

  • Display a dialog without blocking.

    How do I display a dialog without blocking my task? Whenever I call either GUI_ExecDialogBox() or GUI_ExecCreatedDialog() I block until the dialog is done. I'm doing this from an RTX task, and I want the task to spawn off the dialog, but not block on it.

    I can call GUI_CreateDialogBox which apparently creates the dialog, as I get various initialization messages in the dialog box handler, but no matter what I do the dialog box is not visible, unless I then call GUI_ExecCreatedDialog, which I don't want to do because it blocks.

    Thank You,
    Chuck

    NEVER MIND, GUI_Exec() was not getting called. Now it's all better. I suppose the GUI_Exec* calls must call GUI_Exec(). Anyway, that was my problem.

    The post was edited 2 times, last by whatisreality ().