Scroll a label box

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Sometimes I put too much data in a label box from a memo field in a table.
How do I make the label box scoll vertically so I can see all the data?

Thanks

Sheldon
 
Label controls do not have scrollbars. Text boxes do.
Right-click the label control, and Change To | Text Box.

Assign your text to the text box instead of the Caption of the label, e.g.:
Me.Text0 = "This is the text"
 
Back
Top