TextArea in C#

D

Dakkar

I want to add an textare into my program like in html but i saw there
is no such class as textarea are there anyway to create it?
Thanks

*-----------------------*
Posted at:
www.GroupSrv.com
*-----------------------*
 
J

Jazper Manto

are you talking about c# with winforms?
if yes, there you have 2 basic controls for some kind of a text area...
- System.Windows.Forms.RichTextBox
or
- System.Windows.Forms.TextBox

when you use the TextBox, you'll have to set the property Multiline = true
to have a textarea with more than one line!
regars, jazper
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top