Rotate Label Code

M

Michael

Is it possible to get the details (with the rotated label control) to
display the results left to right rather than top to bottom?

I have the following now:

If Me.Left < (2 * 1440) Then
Me![Label0].Visible = True
Me![Label1].Visible = True
Me![Label2].Visible = True
Me![CheckNo].Visible = False
Me![CustNo].Visible = False
Me![PostingAmt].Visible = False
Me.NextRecord = False
Else
Me![Label0].Visible = False
Me![Label1].Visible = False
Me![Label2].Visible = False
Me![CheckNo].Visible = True
Me![CustNo].Visible = True
Me![PostingAmt].Visible = True
End If

But the results using the Access Rotate Text Control are less than favorable
becaues they are so small that they are barely readable at 1000%
magnification.
 

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