Click here to Skip to main content
15,886,030 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
code to create a new richtextbox at run time
Posted
Comments
Sandeep Mewara 11-Jun-11 15:25pm    
Incomprehensible.

Try:
VB
Dim rtb As New RichTextBox()
rtb.Location = New Point(100, 200)
Controls.Add(rtb)
 
Share this answer
 
Comments
Maciej Los 11-Jun-11 8:13am    
5 for short answer, good example!
This[^] is from the archive and may be helpful.

But here[^] and here[^] may also help.
 
Share this answer
 
Comments
Maciej Los 11-Jun-11 8:14am    
5 for links

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900