It appears that the MSG up function is now modal. eg:
image=msg("","Processing":@fm:"U")
This is a problem when the message is left displayed and other user actions are required. eg: Click on something. Its also a problem when debugging and the message is left displayed. You have to log out to regain control. Does anyone know of a way around this. ie: Modality on/off.
Paul-
In the code you listed, you are passing a null as the first parameter of MSG. The first parameter should be the parent window.
Hope it helps-
Mike
Mike, I've tried it with @window as the first parameter and it still functions the same.
Paul,
Modal with respect to what? It is modal with respect to the @WINDOW, but unless you specify in the parameters, I don't think it's system modal. Just speculating, if nothing else seems to work use a hidden window as the parent?
Regardless, when debugging, I've found that ALT-F4 where close an errant message window.
David
Thanks David,
Alt-F4 solves half of my problem. At least now I've got a method of removing the unwanted messages.
As to the modality side of it, I'm not sure. The problem is, that when these messages are displayed, user input is disabled, unlike OI16 where it wasn't.
Paul-
The parent won't necessarily be @window- you should use the parent as it is used in whatever program is being being called. You can also look in the online help for PARENT property.
MIke