Scroll a label box

S

Sheldon

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
 
A

Allen Browne

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"
 
Top