Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Label help 1

Status
Not open for further replies.

CIMTEET

Programmer
Jun 25, 2001
182
US
I know there is a way to put multiple lines text in a label. Problem is I don't remember how. I want to print multiple alarms, each alarm on its own line. Please help. I have have reference manuals and I can't seem to find how to do it. If someone could help me with the syntax or show me another way to do it I would appreciate it. I am all ears. [bigears]

Greg
 
You can have multiple line textbox instead by setting its multiline property
 
The following code will produce a label with three lines, the label would have to be big enough to display all of the lines though.

Label1 = "You" & vbNewLine & "clicked " & vbNewLine & "me"

Hope this helps

Matt
 
Matt,

Your the man, big pink start next to your name, thanks again.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top