Bern,
The Message Popup windows are generated by the operating system when CVI calls any of the popup functions. CVI does not have much control over the appearance or configuration. There are 2 ways to get around this:
1.- Use a CVI panel as a message popup. You can create a function where you create the panel with the message and wait for the user to click the ok option. I am including a small example on how to do this. the advantage here is that you have a CVI panel, so you can change attributes just like you do to any CVI panel.
2.- Get a handle to the actual Window and use Windows SDK functions to close it. Since the message popup windows are not native CVI panels, you can't get a panel handle. However since the message popup is a window, you can
use the Windows SDK function
FindWindow to get a handle to the message window. Once you have a handle you can use the windows SDK functions to manage the window.
Please take a look at this example and let me know if you have any questions on this.
Regards,
Juan Carlos
N.I.