Shows and hides the popup.
Usage
Set_Property(OLECtrlEntID, "OLE.Visible", Boolean)
Values
[True | False]
Default: False
Remarks
The Visible property programmatically shows and hides the popup. The popup does not appear until you set this property to 1. Setting it back to 0 will case the popup to disappear using the current Animation setting.
When using this property, the popup will appear relative to the bottom right corner of the screen. If you need it to appear at a specific location, use the ShowAt method instead. Likewise, you can use the Close method as an alternative to hiding the window.
If ShowDelay is set to 0, then setting this property to 0 or calling the Close method is the only way to hide it.
Example
// Show the popup Set_Property(@Window:".OLE_POPUP", "OLE.Visible", 1)