newbie: newline in Label

  • Thread starter Thread starter steve
  • Start date Start date
S

steve

Hi,
two questions:
1) How can i have a multiline Label?
2) In VB.Net command buttons were replaced by buttons ? (trying to follow an
intro tutorial "transformed" from VB

TIA
 
Answers:

1. Change the code that the designer creates and input the new line where
you want it.
2. The name has changed, but the functionality is largely the same
 
* "steve said:
1) How can i have a multiline Label?

\\\
Me.Label1.Text = "Foo" & ControlChars.NewLine & "Bar"
///
2) In VB.Net command buttons were replaced by buttons ? (trying to follow an
intro tutorial "transformed" from VB

VB6's CommandButton is Windows Forms' Button.
 
Back
Top