Disable text box in request form

Hi How we can disable/enable a text box in request form of report at run time ? In an ordinary form it can do the same by using CurrForm.variablename.ENABLED := TRUE; But in the request form the alias CurrForm is not there. However instead of CurrForm there is alias called RequestOptionsForm can be seen in request form. But the above syntax is not working with RequestOptionsForm. Can anybody help me ? Reagrds Joseph Mathew

You have to name the control first … … then → RequestOptionsForm.YourControlname.ENABLED(TRUE/FALSE); will work.

Hi Thanks very much Motzer. requestOptionsForm.YourControlname.ENABLED(TRUE/FALSE); is working fine in rquest form. I am surprising how we can forget these simple things. Regards Joseph Mathew