About MultiLineTextBox

Palma Colapietro 136 Reputation points
2022-04-23T17:12:37.373+00:00

Hello

How do you insert lines into the MuliLineTextBox control ?

Thanks

Small BASIC
Small BASIC
A programming language created by Microsoft that serves a stepping stone for beginners from block-based coding languages to more complex text-based languages.
277 questions
0 comments No comments
{count} votes

6 answers

Sort by: Most helpful
  1. Small Visual Basic 411 Reputation points
    2022-09-16T23:44:05.603+00:00

    And you can easily insert lines by calling the AppendLine method. Ex:

       TextBox1.AppendLine("Line 1")  
       TextBox1.AppendLine("Line 2")  
       TextBox1.AppendLine("Line 3")  
    
    0 comments No comments