How do I add a newline to a windows-forms TextBox?

后端 未结 14 508
温柔的废话
温柔的废话 2021-01-01 09:37

I am trying to add a line of text to a TextBox component in VB.net, but I cannot figure out for the life of me how to force a new line. Right now it just adds onto what I ha

14条回答
  •  春和景丽
    2021-01-01 10:40

    Try using Environment.NewLine:

    Gets the newline string defined for this environment.

    Something like this ought to work:

    textBox.AppendText("your new text" & Environment.NewLine)
    

提交回复
热议问题