Click here to Skip to main content
15,906,333 members
Home / Discussions / C#
   

C#

 
Questionconnecting remote mysql database using c#.net Pin
dilip51422-Feb-09 20:04
dilip51422-Feb-09 20:04 
AnswerRe: connecting remote mysql database using c#.net Pin
dan!sh 22-Feb-09 20:11
professional dan!sh 22-Feb-09 20:11 
AnswerRe: connecting remote mysql database using c#.net Pin
Christian Graus22-Feb-09 21:04
protectorChristian Graus22-Feb-09 21:04 
AnswerRe: connecting remote mysql database using c#.net Pin
EliottA23-Feb-09 2:47
EliottA23-Feb-09 2:47 
QuestionCheckbox Pin
mrithula822-Feb-09 19:33
mrithula822-Feb-09 19:33 
AnswerRe: Checkbox Pin
dan!sh 22-Feb-09 19:50
professional dan!sh 22-Feb-09 19:50 
AnswerRe: Checkbox Pin
Eslam Afifi22-Feb-09 19:52
Eslam Afifi22-Feb-09 19:52 
AnswerRe: Checkbox Pin
RobScripta23-Feb-09 7:27
professionalRobScripta23-Feb-09 7:27 
The checkboxes are not on the form but on the panel.

this. is assumed if not specified so your code reads:
this.cb.Select();

If you try:

for (i = 0;i < many; i++)
{
string checkname = "cb" + i.ToString().Trim();
checkbox checkitout = (checkbox) this.NameOfPanel.Controls[checkname];
checkitout.Select() = true;

}

This is aircode, so please mind the caps. I also don't know what the Select() property is, but I'll assume you've defined your own checkboxes.

you also see that it is advisable to rename the first checkbox from cb to cb0.

succes !
QuestionProblem in Multiple Insertion with TransactionScope. Pin
hdv21222-Feb-09 18:59
hdv21222-Feb-09 18:59 
AnswerRe: Problem in Multiple Insertion with TransactionScope. Pin
dan!sh 22-Feb-09 20:04
professional dan!sh 22-Feb-09 20:04 
GeneralRe: Problem in Multiple Insertion with TransactionScope. Pin
hdv21224-Feb-09 0:06
hdv21224-Feb-09 0:06 
QuestionAbout Restricted method Pin
rajanbabu_03322-Feb-09 18:49
rajanbabu_03322-Feb-09 18:49 
AnswerRe: About Restricted method Pin
ABitSmart22-Feb-09 20:30
ABitSmart22-Feb-09 20:30 
QuestionAbout GetMethods In Reflection Pin
rajanbabu_03322-Feb-09 18:48
rajanbabu_03322-Feb-09 18:48 
AnswerRe: About GetMethods In Reflection Pin
Calin Tatar22-Feb-09 23:37
Calin Tatar22-Feb-09 23:37 
GeneralRe: About GetMethods In Reflection Pin
rajanbabu_03323-Feb-09 19:44
rajanbabu_03323-Feb-09 19:44 
QuestionMicrosoft Reportviewer question Pin
Rafone22-Feb-09 18:35
Rafone22-Feb-09 18:35 
AnswerRe: Microsoft Reportviewer question Pin
Rafone23-Feb-09 1:25
Rafone23-Feb-09 1:25 
Questionconnecting remote mysql database using c#.net Pin
dilip51422-Feb-09 18:08
dilip51422-Feb-09 18:08 
AnswerRe: connecting remote mysql database using c#.net Pin
Christian Graus22-Feb-09 18:31
protectorChristian Graus22-Feb-09 18:31 
AnswerRe: connecting remote mysql database using c#.net Pin
RobScripta23-Feb-09 7:37
professionalRobScripta23-Feb-09 7:37 
QuestionProgress Bar And Data Process Pin
BlitzPackage22-Feb-09 17:28
BlitzPackage22-Feb-09 17:28 
AnswerRe: Progress Bar And Data Process Pin
Jon Rista22-Feb-09 18:14
Jon Rista22-Feb-09 18:14 
GeneralRe: Progress Bar And Data Process Pin
BlitzPackage22-Feb-09 19:21
BlitzPackage22-Feb-09 19:21 
QuestionWorking with multiple threads. Pin
CodingLover22-Feb-09 16:54
CodingLover22-Feb-09 16:54 

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.