Wait For DLL Proceedure To Complete

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Bruce A. Wilkinson

    #1

    Wait For DLL Proceedure To Complete

    I have written a DLL file that contains dialogs. When the dialog is called
    I need to find a way to hold code execution at that point until the dialog
    is closed so its property values can be used.

    Has anyone run into this before and found a solution?

    thanks

    Bruce


  • J French

    #2
    Re: Wait For DLL Proceedure To Complete

    On Mon, 03 Nov 2003 13:43:45 GMT, "Bruce A. Wilkinson"
    <bwilkins@grole n.com> wrote:
    [color=blue]
    >I have written a DLL file that contains dialogs. When the dialog is called
    >I need to find a way to hold code execution at that point until the dialog
    >is closed so its property values can be used.
    >
    >Has anyone run into this before and found a solution?[/color]

    Yup

    While AFlag = False
    WaitMessage
    DoEvents
    Wend


    Comment

    Working...