10-13-2016 01:30 PM
I have a problem. I want to use the same type of structure that in "Asynchronous Call and Forget.vi".
There is an image of my VI (Message Box.vi).
The VI wait at the "Close reference" until I select OK or Annuler (cancel). This is not the expected behavior. If I disable the "Close reference" I have the expected behavior (renaming the buttons properly).
What I am doing wrong with the asynchronous call ?
Solved! Go to Solution.
10-13-2016 01:42 PM
Looks like Close Reference wants the root loop and your dialog is blocking it until it is finished. I assume that Run in the UI thread is selected in the CLFN for the MessageBoxW function, try changing it to Run in any thread
10-13-2016 01:59 PM
Thanks Darin!!!