Visible property

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
 
K

Ken Snell

What code step are you using?

Try this:

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

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top