Click here to Skip to main content
15,901,505 members
Home / Discussions / C#
   

C#

 
AnswerRe: Contains method doesn't work on BindingList Pin
Wendelius30-Nov-08 11:45
mentorWendelius30-Nov-08 11:45 
GeneralRe: Contains method doesn't work on BindingList Pin
mahraja30-Nov-08 11:49
mahraja30-Nov-08 11:49 
GeneralRe: Contains method doesn't work on BindingList Pin
Wendelius30-Nov-08 12:02
mentorWendelius30-Nov-08 12:02 
GeneralRe: Contains method doesn't work on BindingList Pin
mahraja30-Nov-08 12:10
mahraja30-Nov-08 12:10 
GeneralRe: Contains method doesn't work on BindingList Pin
Wendelius30-Nov-08 12:16
mentorWendelius30-Nov-08 12:16 
Question.net Remoting - Initializing server objects. [modified] Pin
Member 232448330-Nov-08 6:52
Member 232448330-Nov-08 6:52 
AnswerRe: .net Remoting - Initializing server objects. Pin
Member 232448330-Nov-08 12:54
Member 232448330-Nov-08 12:54 
Questiongroupbox behavior Pin
electriac30-Nov-08 6:36
electriac30-Nov-08 6:36 
How do I make my groupBox wait until the process finishes?

 private void button1_Click(object sender, EventArgs e)<br />
        {<br />
            groupBox1.Show();<br />
            button2.Hide();<br />
            int count=0;<br />
            string oneline="";<br />
            if (!Directory.Exists(textBox1.Text)) Directory.CreateDirectory(textBox1.Text);<br />
<br />
            // I want my groupBox to remain while this process continues.<br />
            for (int i = 0; i < listBox1.Items.Count; i++)<br />
            {<br />
                oneline = listBox1.Items[i].ToString().ToLower();<br />
                if (oneline.EndsWith(".mts"))<br />
                {<br />
                    string infile = label1.Text+ oneline;<br />
                    string outfile = textBox1.Text + oneline;<br />
                    File.Copy(infile,outfile,true);<br />
                    label2.Text= "Exporting: " + infile;<br />
                    count++;<br />
                }<br />
            }<br />
<br />
            // I do not want the following to execute until the above has completed<br />
            label3.Text = count + " Files Copied ";<br />
            button2.Show();<br />
        }<br />
<br />
        private void button2_Click_1(object sender, EventArgs e)<br />
        {<br />
            groupBox1.Hide();<br />
        }

AnswerRe: groupbox behavior Pin
Wendelius30-Nov-08 11:33
mentorWendelius30-Nov-08 11:33 
GeneralRe: groupbox behavior Pin
Luc Pattyn30-Nov-08 11:48
sitebuilderLuc Pattyn30-Nov-08 11:48 
GeneralRe: groupbox behavior Pin
electriac30-Nov-08 12:09
electriac30-Nov-08 12:09 
GeneralRe: groupbox behavior Pin
Luc Pattyn30-Nov-08 12:27
sitebuilderLuc Pattyn30-Nov-08 12:27 
GeneralRe: groupbox behavior Pin
electriac30-Nov-08 15:16
electriac30-Nov-08 15:16 
GeneralRe: groupbox behavior Pin
Luc Pattyn30-Nov-08 15:43
sitebuilderLuc Pattyn30-Nov-08 15:43 
Questiondeserialize issue Pin
George_George30-Nov-08 3:45
George_George30-Nov-08 3:45 
AnswerRe: deserialize issue [modified] Pin
User 665830-Nov-08 3:58
User 665830-Nov-08 3:58 
AnswerRe: deserialize issue Pin
Giorgi Dalakishvili30-Nov-08 4:20
mentorGiorgi Dalakishvili30-Nov-08 4:20 
QuestionImplementing Audit Trail for Objects in C#? Pin
abmv30-Nov-08 3:25
professionalabmv30-Nov-08 3:25 
AnswerRe: Implementing Audit Trail for Objects in C#? Pin
User 665830-Nov-08 4:03
User 665830-Nov-08 4:03 
GeneralRe: Implementing Audit Trail for Objects in C#? Pin
abmv30-Nov-08 6:35
professionalabmv30-Nov-08 6:35 
AnswerRe: Implementing Audit Trail for Objects in C#? Pin
Pete O'Hanlon30-Nov-08 9:40
mvePete O'Hanlon30-Nov-08 9:40 
QuestionCreating an Alias to SQL Server and configure remote access control via code ? Pin
calanit30-Nov-08 1:13
calanit30-Nov-08 1:13 
AnswerRe: Creating an Alias to SQL Server and configure remote access control via code ? Pin
Wendelius30-Nov-08 4:03
mentorWendelius30-Nov-08 4:03 
GeneralRe: Creating an Alias to SQL Server and configure remote access control via code ? Pin
calanit30-Nov-08 5:44
calanit30-Nov-08 5:44 
GeneralRe: Creating an Alias to SQL Server and configure remote access control via code ? Pin
Wendelius30-Nov-08 6:21
mentorWendelius30-Nov-08 6:21 

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.