change the visibility property

kanikakanika Member Posts: 247
Hello again;
I need to change the Visible property of a text box control depending on the value of another control

How Can I Do it?

Thanks.

Answers

  • mohana_cse06mohana_cse06 Member Posts: 5,504
    Check any existing report how it has been done

    it should be something like
    =IIF(Fields!<anotherfield.value> =0,TRUE,FALSE)
    
  • BeliasBelias Member Posts: 2,998
    I doubt he's talking about rdlc, as he posted in the classic client forum... :mrgreen:
    but regardless, are you talking about a textbox in a classic report?
    or a textbox in a form?
    -Mirko-
    "Never memorize what you can easily find in a book".....Or Mibuso
    My Blog
  • kanikakanika Member Posts: 247
    It's a textbox in a NAV classic report
  • BeliasBelias Member Posts: 2,998
    basically you have to create 2 sections, (one with your textbox and one not) and then show only one of them dynamically with Currreport.showoutput(true/false)
    plenty of topics in mibuso about it, anyway...search better next time ;)
    -Mirko-
    "Never memorize what you can easily find in a book".....Or Mibuso
    My Blog
  • kanikakanika Member Posts: 247
    thanks!!
    Now I know what I have to look
Sign In or Register to comment.