Click here to Skip to main content
15,891,777 members
Home / Discussions / C#
   

C#

 
QuestionRe: incrementing using C#.Net Pin
varun_mca_ju26-Aug-08 21:05
varun_mca_ju26-Aug-08 21:05 
GeneralRe: incrementing using C#.Net Pin
Ashfield26-Aug-08 21:06
Ashfield26-Aug-08 21:06 
QuestionRe: incrementing using C#.Net Pin
varun_mca_ju26-Aug-08 21:23
varun_mca_ju26-Aug-08 21:23 
AnswerRe: incrementing using C#.Net Pin
Ashfield26-Aug-08 21:45
Ashfield26-Aug-08 21:45 
QuestionRe: incrementing using C#.Net Pin
varun_mca_ju26-Aug-08 22:10
varun_mca_ju26-Aug-08 22:10 
AnswerRe: incrementing using C#.Net Pin
Ashfield27-Aug-08 0:30
Ashfield27-Aug-08 0:30 
QuestionAdd controls to a tab page at run-time Pin
CodingLover26-Aug-08 19:25
CodingLover26-Aug-08 19:25 
AnswerRe: Add controls to a tab page at run-time Pin
michael@cohen26-Aug-08 19:32
michael@cohen26-Aug-08 19:32 
this is something i made a few days ago...

private void tabControl1_SelectedIndexChanged(object sender, EventArgs e)
{

RefreshList();
switch (tabControl1.SelectedIndex)
{
case 0:
tabPage1.Controls.Add(groupBox2);
tabPage1.Controls.Add(groupBox1);
break;
case 1:
tabPage2.Controls.Add(groupBox2);
tabPage2.Controls.Add(groupBox1);
break;
case 2:
tabPage3.Controls.Add(groupBox2);
tabPage3.Controls.Add(groupBox1);
break;
default:
break;
}

}
QuestionRe: Add controls to a tab page at run-time Pin
CodingLover26-Aug-08 19:53
CodingLover26-Aug-08 19:53 
AnswerRe: Add controls to a tab page at run-time Pin
Mycroft Holmes26-Aug-08 22:07
professionalMycroft Holmes26-Aug-08 22:07 
GeneralRe: Add controls to a tab page at run-time Pin
CodingLover26-Aug-08 22:43
CodingLover26-Aug-08 22:43 
GeneralRe: Add controls to a tab page at run-time Pin
Mycroft Holmes26-Aug-08 22:54
professionalMycroft Holmes26-Aug-08 22:54 
GeneralRe: Add controls to a tab page at run-time Pin
michael@cohen26-Aug-08 23:18
michael@cohen26-Aug-08 23:18 
Questionproblem with the text box Pin
Preeti197926-Aug-08 19:14
Preeti197926-Aug-08 19:14 
AnswerRe: problem with the text box Pin
AhsanS26-Aug-08 19:43
AhsanS26-Aug-08 19:43 
QuestionGdi+ Memory Leak >Scrolling text Pin
michael@cohen26-Aug-08 19:06
michael@cohen26-Aug-08 19:06 
AnswerRe: Gdi+ Memory Leak >Scrolling text Pin
leppie26-Aug-08 22:00
leppie26-Aug-08 22:00 
GeneralRe: Gdi+ Memory Leak >Scrolling text Pin
Mycroft Holmes26-Aug-08 22:12
professionalMycroft Holmes26-Aug-08 22:12 
GeneralRe: Gdi+ Memory Leak >Scrolling text Pin
leppie26-Aug-08 22:19
leppie26-Aug-08 22:19 
GeneralRe: Gdi+ Memory Leak >Scrolling text Pin
michael@cohen26-Aug-08 22:58
michael@cohen26-Aug-08 22:58 
QuestionWindows Servce in windows application Problem Pin
idreesbadshah26-Aug-08 18:16
idreesbadshah26-Aug-08 18:16 
AnswerRe: Windows Servce in windows application Problem Pin
Ashfield26-Aug-08 21:10
Ashfield26-Aug-08 21:10 
GeneralRe: Windows Servce in windows application Problem Pin
idreesbadshah26-Aug-08 22:17
idreesbadshah26-Aug-08 22:17 
GeneralRe: Windows Servce in windows application Problem Pin
Ashfield27-Aug-08 2:52
Ashfield27-Aug-08 2:52 
Question.Net Framework version issue Pin
George_George26-Aug-08 16:52
George_George26-Aug-08 16:52 

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.