Click here to Skip to main content
15,894,896 members
Home / Discussions / C#
   

C#

 
QuestionDistributed Application Development Pin
Abdul Rahman Hamidy16-Aug-09 19:26
Abdul Rahman Hamidy16-Aug-09 19:26 
AnswerRe: Distributed Application Development Pin
Hristo-Bojilov16-Aug-09 21:52
Hristo-Bojilov16-Aug-09 21:52 
GeneralRe: Distributed Application Development Pin
Abdul Rahman Hamidy16-Aug-09 23:47
Abdul Rahman Hamidy16-Aug-09 23:47 
QuestionRadioButton Pin
daffy_200316-Aug-09 15:28
daffy_200316-Aug-09 15:28 
AnswerRe: RadioButton Pin
DdoubleD16-Aug-09 16:13
DdoubleD16-Aug-09 16:13 
GeneralRe: RadioButton Pin
daffy_200316-Aug-09 16:54
daffy_200316-Aug-09 16:54 
GeneralRe: RadioButton Pin
DdoubleD16-Aug-09 17:02
DdoubleD16-Aug-09 17:02 
GeneralRe: RadioButton Pin
DdoubleD16-Aug-09 17:06
DdoubleD16-Aug-09 17:06 
For example:
private void radioButton1_Click(object sender, EventArgs e)
{
radioButton1.Text = "my new text";
}

but to wire the event:

this.radioButton1.Click += new System.EventHandler(this.radioButton1_Click);

which is done automatically by the designer, but if you don't have VS, just add the above to your form's constructor with a change to the radio button control's name of course that matches the method signature (e.g. "radioButton1_Click" in this case).
GeneralRe: RadioButton Pin
daffy_200316-Aug-09 17:10
daffy_200316-Aug-09 17:10 
GeneralRe: RadioButton Pin
DdoubleD16-Aug-09 17:17
DdoubleD16-Aug-09 17:17 
GeneralRe: RadioButton Pin
DdoubleD16-Aug-09 17:20
DdoubleD16-Aug-09 17:20 
GeneralRe: RadioButton Pin
DdoubleD16-Aug-09 17:44
DdoubleD16-Aug-09 17:44 
GeneralRe: RadioButton Pin
daffy_200316-Aug-09 18:16
daffy_200316-Aug-09 18:16 
AnswerRe: RadioButton Pin
Blue_Boy16-Aug-09 16:14
Blue_Boy16-Aug-09 16:14 
GeneralRe: RadioButton Pin
daffy_200316-Aug-09 16:55
daffy_200316-Aug-09 16:55 
AnswerRe: RadioButton Pin
hosseinsinohe16-Aug-09 21:26
hosseinsinohe16-Aug-09 21:26 
QuestionLocal Database cached with C# Pin
Jacob Dixon16-Aug-09 14:40
Jacob Dixon16-Aug-09 14:40 
AnswerRe: Local Database cached with C# Pin
Luc Pattyn16-Aug-09 14:46
sitebuilderLuc Pattyn16-Aug-09 14:46 
GeneralRe: Local Database cached with C# Pin
Jacob Dixon16-Aug-09 14:50
Jacob Dixon16-Aug-09 14:50 
GeneralRe: Local Database cached with C# Pin
Jacob Dixon16-Aug-09 14:52
Jacob Dixon16-Aug-09 14:52 
GeneralRe: Local Database cached with C# Pin
Luc Pattyn16-Aug-09 15:01
sitebuilderLuc Pattyn16-Aug-09 15:01 
GeneralRe: Local Database cached with C# Pin
Jacob Dixon16-Aug-09 15:02
Jacob Dixon16-Aug-09 15:02 
GeneralRe: Local Database cached with C# Pin
Jacob Dixon16-Aug-09 14:59
Jacob Dixon16-Aug-09 14:59 
GeneralRe: Local Database cached with C# Pin
Luc Pattyn16-Aug-09 15:08
sitebuilderLuc Pattyn16-Aug-09 15:08 
AnswerRe: Local Database cached with C# Pin
Mycroft Holmes16-Aug-09 16:40
professionalMycroft Holmes16-Aug-09 16:40 

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.