devxlogo

Inserting Control Characters

Question:
How do I insert carriage return (Chr(13)) and line feed (Chr (10)) in a text box at run-time?

Answer:
Just use the ampersand (&) and add them to the SelText property of the text box, and they will be inserted where the cursor is.For VB3.0 you can make a constant called vbCr and set it in code to be Chr(13) & Chr(10). VB 4.0 has that constant built-in.Your code to insert the text at the cursor would then be:

Text1.SelText = vbCr
The code to append it to the current contents of the textbox would be:
Text1 = Text1 & vbCr

Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience.

See also  How Seasoned Architects Evaluate New Tech

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.