Suppress Check Box

G

Guest

How do you suppress the blank spaces in a report between the suppressed check
boxes?

Me.lblSomething.Visible = Me.chkSomething
Me.chkSomething.Visible = Me.chkSomething

This only hides the object field not the spaces. I also already changed all
fields on the report to "can Shrink". I also tried the:

=IIf([me.something] Is Null,Null,"me.something:")

however it stlii just makes the information not appear and it leaves blanks.
 
L

Larry Linson

Can Grow and Can Shrink only work in the vertical direction, not
horizontally, and shrink only if there is not some unshrunken field
alongside them. Is that what you are experiencing? What, exactly, did you
expect to happen?

Larry Linson
Microsoft Access MVP
 
G

Guest

Larry, I was able to research the problem through other threads and it was
that I needed to have each field toching each other for the shrink to
work....in other words no black spaces between each text box

Larry Linson said:
Can Grow and Can Shrink only work in the vertical direction, not
horizontally, and shrink only if there is not some unshrunken field
alongside them. Is that what you are experiencing? What, exactly, did you
expect to happen?

Larry Linson
Microsoft Access MVP


Please help James said:
How do you suppress the blank spaces in a report between the suppressed
check
boxes?

Me.lblSomething.Visible = Me.chkSomething
Me.chkSomething.Visible = Me.chkSomething

This only hides the object field not the spaces. I also already changed
all
fields on the report to "can Shrink". I also tried the:

=IIf([me.something] Is Null,Null,"me.something:")

however it stlii just makes the information not appear and it leaves
blanks.
 

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

Similar Threads


Top