VB .NET 2003 Buttons

  • Thread starter Thread starter Mike
  • Start date Start date
M

Mike

Can you put 2 lines of text on a button on a Windows form?

The text isn't wrapping to the next line and I don't see a way to get it to.

It's in a Pocket PC project - don't know if that has anything to do with it.

Mike W.
 
My inital reaction is

Button1.Text = "Green Bay" & vbCrLf & "Beats Eagles"

This will be 2 lines of text on the button.
 
Are you sure that will work? If not, you can try:

Button1.Text = "Eagles" & vbCrLf & "Beat Packers"

Sorry! Couldn't resist!
 
hmmmm

See you Monday when you both eat your words......

You see Green Bay is the "New Jerusalem"

so says Irv Favre

Button1.Text = "Packers" & vbCrLf & "WIN SUPERBOWL"

GO PACK

:)
 
Back
Top