Click here to Skip to main content
15,899,937 members
Home / Discussions / C#
   

C#

 
QuestionThis is a performance issue: Struct vs. Class. Pin
Lecutus127-May-09 10:03
Lecutus127-May-09 10:03 
AnswerRe: This is a performance issue: Struct vs. Class. Pin
DaveyM6927-May-09 10:13
professionalDaveyM6927-May-09 10:13 
AnswerRe: This is a performance issue: Struct vs. Class. Pin
PIEBALDconsult27-May-09 10:20
mvePIEBALDconsult27-May-09 10:20 
AnswerRe: This is a performance issue: Struct vs. Class. Pin
harold aptroot27-May-09 10:22
harold aptroot27-May-09 10:22 
AnswerRe: This is a performance issue: Struct vs. Class. Pin
Luc Pattyn27-May-09 10:39
sitebuilderLuc Pattyn27-May-09 10:39 
AnswerRe: This is a performance issue: Struct vs. Class. Pin
Lecutus127-May-09 10:50
Lecutus127-May-09 10:50 
GeneralRe: This is a performance issue: Struct vs. Class. Pin
Luc Pattyn27-May-09 10:54
sitebuilderLuc Pattyn27-May-09 10:54 
QuestionHow to use cut function with selected tab of tabcontrol Pin
Aljaz11127-May-09 9:06
Aljaz11127-May-09 9:06 
I am adding pages like this:
TabPage newPage = new TabPage();
            newPage.Text = "Text"+tabControl1.TabPages.Count;
            tabControl1.TabPages.Add(newPage);

            RichTextBox richTextBox1 = new RichTextBox();
            richTextBox1.Location = new Point(0, 0);
            richTextBox1.Size = newPage.Size;
            richTextBox1.Dock = DockStyle.Fill;
            richTextBox1.Name = "RichTextBox" + tabControl1.TabPages.Count;
            newPage.Controls.Add(richTextBox1);


Now i would like to cut something from richtextbox of selected tab..how to??
AnswerRe: How to use cut function with selected tab of tabcontrol Pin
0x3c027-May-09 9:26
0x3c027-May-09 9:26 
GeneralRe: How to use cut function with selected tab of tabcontrol Pin
Aljaz11127-May-09 9:32
Aljaz11127-May-09 9:32 
GeneralRe: How to use cut function with selected tab of tabcontrol Pin
0x3c027-May-09 9:46
0x3c027-May-09 9:46 
GeneralRe: How to use cut function with selected tab of tabcontrol Pin
Troy Russell27-May-09 9:59
Troy Russell27-May-09 9:59 
GeneralRe: How to use cut function with selected tab of tabcontrol Pin
EliottA27-May-09 9:46
EliottA27-May-09 9:46 
GeneralRe: How to use cut function with selected tab of tabcontrol Pin
Aljaz11127-May-09 9:52
Aljaz11127-May-09 9:52 
GeneralRe: How to use cut function with selected tab of tabcontrol Pin
0x3c027-May-09 10:50
0x3c027-May-09 10:50 
GeneralRe: How to use cut function with selected tab of tabcontrol Pin
Aljaz11127-May-09 12:01
Aljaz11127-May-09 12:01 
GeneralRe: How to use cut function with selected tab of tabcontrol Pin
0x3c027-May-09 22:47
0x3c027-May-09 22:47 
Questionhow to wrapping software Pin
Demasoni27-May-09 8:42
Demasoni27-May-09 8:42 
AnswerRe: how to wrapping software Pin
DaveyM6927-May-09 10:20
professionalDaveyM6927-May-09 10:20 
AnswerRe: how to wrapping software Pin
Rajdeep.NET is BACK27-May-09 20:22
Rajdeep.NET is BACK27-May-09 20:22 
Questionhow to get the mouse clicked location?? Pin
Hema Bairavan27-May-09 5:07
Hema Bairavan27-May-09 5:07 
AnswerRe: how to get the mouse clicked location?? Pin
J4amieC27-May-09 5:20
J4amieC27-May-09 5:20 
AnswerRe: how to get the mouse clicked location?? Pin
DaveyM6927-May-09 5:20
professionalDaveyM6927-May-09 5:20 
QuestionReading a wiki page Pin
michael@cohen27-May-09 3:52
michael@cohen27-May-09 3:52 
AnswerRe: Reading a wiki page Pin
EliottA27-May-09 4:10
EliottA27-May-09 4:10 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.