Click here to Skip to main content
15,881,281 members
Home / Discussions / C#
   

C#

 
AnswerRe: Passing List to form and back... Help plz. Pin
Luc Pattyn20-Oct-09 14:03
sitebuilderLuc Pattyn20-Oct-09 14:03 
GeneralRe: Passing List to form and back... Help plz. Pin
JollyMansArt20-Oct-09 14:14
JollyMansArt20-Oct-09 14:14 
QuestionRe: Passing List to form and back... Help plz. [modified] Pin
JollyMansArt20-Oct-09 14:19
JollyMansArt20-Oct-09 14:19 
QuestionRe: Passing List to form and back... Help plz. Pin
JollyMansArt20-Oct-09 14:23
JollyMansArt20-Oct-09 14:23 
QuestionRe: Passing List to form and back... Help plz. Pin
JollyMansArt20-Oct-09 14:20
JollyMansArt20-Oct-09 14:20 
AnswerRe: Passing List to form and back... Help plz. Pin
JollyMansArt20-Oct-09 14:42
JollyMansArt20-Oct-09 14:42 
GeneralRe: Passing List to form and back... Help plz. Pin
Luc Pattyn20-Oct-09 14:32
sitebuilderLuc Pattyn20-Oct-09 14:32 
GeneralRe: Passing List to form and back... Help plz. Pin
JollyMansArt20-Oct-09 14:46
JollyMansArt20-Oct-09 14:46 
I figured out finally how to pass the array to the child and back...

Parrent Form:
using (frmpopupEmailRecipient popupVerifyEmailRecipients = new frmpopupEmailRecipient())
            {
                popupVerifyEmailRecipients.MyEmailTo = EmailTo;
                popupVerifyEmailRecipients.MyEmailCC = EmailCC;

                if (popupVerifyEmailRecipients.Show() == DialogResult.OK) //How to do this?
                {
                    
                }

                EmailTo = popupVerifyEmailRecipients.MyEmailTo;
                EmailCC = popupVerifyEmailRecipients.MyEmailCC;

            }


Child Form:

public partial class frmpopupEmailRecipient : Form
    {
        public List<String> MyEmailTo;
        public List<String> MyEmailCC
}



Now optionally I would like for learning instead of just closing the frm... How do I modify the child form to return a dialogresult.ok value?
GeneralRe: Passing List to form and back... Help plz. Pin
Luc Pattyn20-Oct-09 15:10
sitebuilderLuc Pattyn20-Oct-09 15:10 
Questionhow to make line after 2 rows in crystal report ? Pin
E_Gold20-Oct-09 10:16
E_Gold20-Oct-09 10:16 
AnswerRe: how to make line after 2 rows in crystal report ? [modified] Pin
Arun Kallingal21-Oct-09 20:18
Arun Kallingal21-Oct-09 20:18 
GeneralRe: how to make line after 2 rows in crystal report ? Pin
Arun Kallingal22-Oct-09 1:24
Arun Kallingal22-Oct-09 1:24 
QuestionHow get informed about incoming network connections in C#? Pin
Wild Max20-Oct-09 8:56
Wild Max20-Oct-09 8:56 
AnswerRe: How get informed about incoming network connections in C#? Pin
Eddy Vluggen20-Oct-09 10:52
professionalEddy Vluggen20-Oct-09 10:52 
QuestionCan I return a string if I use "using (StreamReader sw = new StreamReader(new FileStream("out1.xml", FileMode.Open)))" Pin
sheateng20-Oct-09 8:41
sheateng20-Oct-09 8:41 
AnswerRe: Can I return a string if I use "using (StreamReader sw = new StreamReader(new FileStream("out1.xml", FileMode.Open)))" Pin
Gideon Engelberth20-Oct-09 9:01
Gideon Engelberth20-Oct-09 9:01 
QuestionHow to pass values to crystal report field ? Pin
hdv21220-Oct-09 8:09
hdv21220-Oct-09 8:09 
QuestionGet SelectedValue DataGridViewComboBox Column Pin
AmirReza Mashalian20-Oct-09 8:01
AmirReza Mashalian20-Oct-09 8:01 
AnswerRe: Get SelectedValue DataGridViewComboBox Column Pin
Henry Minute20-Oct-09 11:05
Henry Minute20-Oct-09 11:05 
QuestionConversion of C++ istream/ostream to C# Pin
Member 264997220-Oct-09 5:10
Member 264997220-Oct-09 5:10 
AnswerRe: Conversion of C++ istream/ostream to C# Pin
Dave Doknjas20-Oct-09 12:44
Dave Doknjas20-Oct-09 12:44 
AnswerRe: Conversion of C++ istream/ostream to C# Pin
Christian Graus20-Oct-09 13:02
protectorChristian Graus20-Oct-09 13:02 
GeneralRe: Conversion of C++ istream/ostream to C# Pin
Member 264997220-Oct-09 15:58
Member 264997220-Oct-09 15:58 
QuestionRdlc report Pin
T_Teef20-Oct-09 4:12
T_Teef20-Oct-09 4:12 
AnswerRe: Rdlc report Pin
Wes Aday20-Oct-09 4:56
professionalWes Aday20-Oct-09 4:56 

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.