making a tabbed report using TextBox/RichText Box control

matchlock

New member
Joined
Dec 30, 2010
Messages
3
Programming Experience
Beginner
hi... i'm new here, and i've read so many threads here for me to learn. thanks for the reply to those who helped me answer my problem.

anyway, i just want to know how can i write a multi-tabbed text output in textbox/rich textbox, like one of those creating a report. like in this image:

textreport.jpg



would really appreciate your help again. Thanks..
 
If you want tabs then you need a TabControl. You would then put a RichTextBox or whatever on each TabPage.

Alternatively, you could use a single RichTextBox on the form and position it over the TabControl. You would change the contents of the RichTextBox each time the SelectedIndexChanged event is raised by the TabControl.
 
Back
Top