Click here to Skip to main content
15,949,686 members
Home / Discussions / C#
   

C#

 
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 
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 
If that is the case (haven't seen your code yet), then here is an example of what you want I believe:
MyNewForm form2 = new MyNewForm();
DialogResult result = form2.ShowDialog();
if (result == DialogResult.Yes)
    radioButton1.Text = "Yes";

Note the "Text" being set after return from the previous form's "Yes" button, but you have to ensure the DialogResult being returned from form2 is DialogResult.Yes for this to work.
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 
QuestionA question related to Computers connection using C# Pin
CoderForEver16-Aug-09 10:11
CoderForEver16-Aug-09 10:11 
AnswerRe: A question related to Computers connection using C# Pin
Saksida Bojan16-Aug-09 11:03
Saksida Bojan16-Aug-09 11:03 
GeneralRe: A question related to Computers connection using C# Pin
CoderForEver16-Aug-09 21:54
CoderForEver16-Aug-09 21:54 
GeneralRe: A question related to Computers connection using C# Pin
Saksida Bojan16-Aug-09 23:43
Saksida Bojan16-Aug-09 23:43 

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.