Click here to Skip to main content
15,919,613 members
Home / Discussions / C#
   

C#

 
AnswerRe: How to access .chm file present in zip file in C# winform application ? Pin
Marco Bertschi21-Oct-13 21:50
protectorMarco Bertschi21-Oct-13 21:50 
GeneralRe: How to access .chm file present in zip file in C# winform application ? Pin
Pratik_P21-Oct-13 22:00
Pratik_P21-Oct-13 22:00 
SuggestionRe: How to access .chm file present in zip file in C# winform application ? Pin
Eddy Vluggen21-Oct-13 22:30
professionalEddy Vluggen21-Oct-13 22:30 
AnswerRe: How to access .chm file present in zip file in C# winform application ? Pin
Marco Bertschi21-Oct-13 22:39
protectorMarco Bertschi21-Oct-13 22:39 
NewsRe: How to access .chm file present in zip file in C# winform application ? Pin
Pratik_P21-Oct-13 23:02
Pratik_P21-Oct-13 23:02 
GeneralRe: How to access .chm file present in zip file in C# winform application ? Pin
Marco Bertschi21-Oct-13 23:05
protectorMarco Bertschi21-Oct-13 23:05 
QuestionHow to get print driver version Pin
Dazed.dnc21-Oct-13 15:49
Dazed.dnc21-Oct-13 15:49 
QuestionDynamic RadiobuttonList Pin
vkEE21-Oct-13 9:42
vkEE21-Oct-13 9:42 
Hi,

I am building an entire survey dynamically. I just have a panel defined on the page, and adding controls dynamically to this panel to render my page. The survey question and answers are all stored in the database. So, i have built controls for textbox areas, checkboxlist.

I am kind of stumped on the radiobuttonlist control. It is not working on the ID part. I have defined a radiobuttonlist, and adding this list. If I define the ID outside the for loop, on submitting the code fails on "Multiple controls with the same rdb value. And if I add it inside the for loop, you are to select multiple radio buttons, which is not right.
Any ideas?? Thanks!

 RadioButtonList rbL = new RadioButtonList();
rbL.ID = "rdb_";

foreach (string s in eachQ[i].answer.Split(','))
                                    {
rbL.Items.Add(new ListItem(s));
rbL.ID = "rdb_" + eachQ[i].answerid.ToString();
                                     pnlQuestions.Controls.Add(rbL);
 }     

AnswerRe: Dynamic RadiobuttonList Pin
Richard Deeming21-Oct-13 10:25
mveRichard Deeming21-Oct-13 10:25 
AnswerRe: Dynamic RadiobuttonList Pin
CodeBlack21-Oct-13 20:25
professionalCodeBlack21-Oct-13 20:25 
AnswerRe: Dynamic RadiobuttonList Pin
GuyThiebaut22-Oct-13 2:36
professionalGuyThiebaut22-Oct-13 2:36 
QuestionHow to map results from mysql select to c# DataviewGrid Pin
coder25421-Oct-13 4:39
coder25421-Oct-13 4:39 
AnswerRe: How to map results from mysql select to c# DataviewGrid Pin
Eddy Vluggen21-Oct-13 7:24
professionalEddy Vluggen21-Oct-13 7:24 
QuestionHow to Insert Data Into .Sql File Pin
Django_Untaken21-Oct-13 0:05
Django_Untaken21-Oct-13 0:05 
AnswerRe: How to Insert Data Into .Sql File Pin
Eddy Vluggen21-Oct-13 0:25
professionalEddy Vluggen21-Oct-13 0:25 
GeneralRe: How to Insert Data Into .Sql File Pin
Django_Untaken21-Oct-13 0:28
Django_Untaken21-Oct-13 0:28 
AnswerRe: How to Insert Data Into .Sql File Pin
OriginalGriff21-Oct-13 0:57
mveOriginalGriff21-Oct-13 0:57 
Questiononline exam using dot net and c# - ms sql server Pin
ShrikrishnaG20-Oct-13 23:15
ShrikrishnaG20-Oct-13 23:15 
QuestionRe: online exam using dot net and c# - ms sql server Pin
Eddy Vluggen21-Oct-13 0:27
professionalEddy Vluggen21-Oct-13 0:27 
AnswerRe: online exam using dot net and c# - ms sql server Pin
OriginalGriff21-Oct-13 0:57
mveOriginalGriff21-Oct-13 0:57 
GeneralRe: online exam using dot net and c# - ms sql server Pin
Marco Bertschi21-Oct-13 22:41
protectorMarco Bertschi21-Oct-13 22:41 
AnswerRe: online exam using dot net and c# - ms sql server Pin
Abhinav S21-Oct-13 3:02
Abhinav S21-Oct-13 3:02 
AnswerRe: online exam using dot net and c# - ms sql server Pin
Marco Bertschi21-Oct-13 22:42
protectorMarco Bertschi21-Oct-13 22:42 
QuestionHow to pass data from 1 client to another trugh server? Pin
tdcmystere20-Oct-13 6:40
tdcmystere20-Oct-13 6:40 
AnswerRe: How to pass data from 1 client to another trugh server? Pin
OriginalGriff20-Oct-13 23:12
mveOriginalGriff20-Oct-13 23:12 

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.