Consultor Eletrônico



Kbase 15082: How to make a radio button set read-only
Autor   Progress Software Corporation - Progress
Acesso   Público
Publicação   5/10/1998
How to make a radio button set read-only

To make a radio button set "read-only" without disabling them, attach
the following triggers to your radio button set:

ON MOUSE-SELECT-DOWN
DO:
BELL. /* or some other code here */
END.

ON ANY-KEY
DO:
BELL. /* or some other code here */
END.

These combined triggers will not allow any changes to the radio set.

Progress Software Technical Support Note # 15082