Suppress Check Box

  • Thread starter Thread starter Guest
  • Start date Start date
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.
 
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
 
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

2 related questions 5
Suppress Blank Subreports 2
Access 2003 report headers 2
suppress printing line in report 10
Check Box suppressed 2
Useless space... 11
Can I suppress... 1
Ignore blank lines in report text box 3

Back
Top