How to hide controls in the report-request option form.

satish_navsatish_nav Member Posts: 65
Hi All,

I have to hide one textbox control in the report request form based on the option value selected in report request form.

How can i hide this controls.Please suggest me on this..
Thanks in advance..

Satish...

Comments

  • krikikriki Member, Moderator Posts: 9,110
    The same way as you would do it on a form. Remember to give your control a name to be able to reference it.
    Regards,Alain Krikilion
    No PM,please use the forum. || May the <SOLVED>-attribute be in your title!


  • satish_navsatish_nav Member Posts: 65
    Kriki,
    Thank u for your reply.

    i tried, this is not working. I tried as below,

    IF ShipmentType = ShipmentType::Other THEN
    UserTextmessage.EDITABLE(FALSE);

    this code throwing compilation error like The variable is not a record. Variable.field is invalid.

    can any body please help me out.
    Thanks in advance..

    Satish...
  • krikikriki Member, Moderator Posts: 9,110
    Use:
    RequestOptionsForm.UserTextmessage.EDITABLE(FALSE);
    Regards,Alain Krikilion
    No PM,please use the forum. || May the <SOLVED>-attribute be in your title!


  • satish_navsatish_nav Member Posts: 65
    Thank u Kriki.

    I got it now. thanks again.
    Thanks in advance..

    Satish...
Sign In or Register to comment.