Visible property

  • Thread starter Thread starter Bob
  • Start date Start date
B

Bob

In past I was able to make text box and it's label invisible OnFormat
using If statement when text box didn't contain any data. Spend last 2
hours trying to do so again without luck. Any hints ?

Regards,

Bob
 
What code step are you using?

Try this:

Me.TxtBoxName.Visible = Not (Len(Me.TxtBoxName.Value & "") = 0)
 
Back
Top