Click here to Skip to main content
15,887,027 members
Home / Discussions / C#
   

C#

 
GeneralRe: mp3 in C# Pin
jtmtv189-May-03 19:05
jtmtv189-May-03 19:05 
GeneralLarge File Transfer in Client-Server Applications Pin
Vasant Salian8-May-03 1:28
Vasant Salian8-May-03 1:28 
GeneralRe: Large File Transfer in Client-Server Applications Pin
Katalyst8-May-03 4:55
Katalyst8-May-03 4:55 
Questionwhat you must add to your exe file Pin
flyingv7-May-03 19:56
flyingv7-May-03 19:56 
AnswerRe: what you must add to your exe file Pin
Stephane Rodriguez.7-May-03 20:03
Stephane Rodriguez.7-May-03 20:03 
QuestionHandle for a child window? Pin
lxhan7-May-03 17:26
lxhan7-May-03 17:26 
AnswerRe: Handle for a child window? Pin
Stephane Rodriguez.7-May-03 20:00
Stephane Rodriguez.7-May-03 20:00 
AnswerRe: Handle for a child window? Pin
LongRange.Shooter9-May-03 10:44
LongRange.Shooter9-May-03 10:44 
I had code where I needed to iterate through my children looking for replicated data being displayed between the child displays.

C#
public void mdiParent_childLoadComplete(object sender, LoadCompleteEventArgs senderArgs)
{
    System.Windows.Forms.Form[] formArray = this.MdiChildren;
    int color = formArray.Length - 1;
    if (color < 1)
        return;
    editView newForm = new editView();

    // first : locate the form just built
    foreach (editView children in formArray)
    {
        if (children.Text == senderArgs.delegateIdentifier)
        {
            newForm = children;
            break;
        }
    }


_____________________________________________
The world is a dangerous place.
Not because of those that do evil,
    but because of those who look on and do nothing.

QuestionC++ define statements == what in C#? Pin
dazinith7-May-03 9:38
dazinith7-May-03 9:38 
AnswerRe: C++ define statements == what in C#? Pin
RB@Emphasys7-May-03 9:45
RB@Emphasys7-May-03 9:45 
GeneralRe: C++ define statements == what in C#? Pin
dazinith7-May-03 9:54
dazinith7-May-03 9:54 
GeneralRe: C++ define statements == what in C#? Pin
leppie8-May-03 10:22
leppie8-May-03 10:22 
GeneralRe: C++ define statements == what in C#? Pin
Kevin McFarlane9-May-03 1:00
Kevin McFarlane9-May-03 1:00 
AnswerRe: C++ define statements == what in C#? Pin
Kevin McFarlane8-May-03 0:32
Kevin McFarlane8-May-03 0:32 
GeneralWindows.forms application Pin
viana7-May-03 8:19
viana7-May-03 8:19 
GeneralRe: Windows.forms application Pin
Stephane Rodriguez.7-May-03 8:43
Stephane Rodriguez.7-May-03 8:43 
GeneralRe: Windows.forms application Pin
RB@Emphasys7-May-03 8:45
RB@Emphasys7-May-03 8:45 
GeneralRe: Windows.forms application Pin
viana7-May-03 10:08
viana7-May-03 10:08 
GeneralRe: Windows.forms application Pin
RB@Emphasys7-May-03 10:17
RB@Emphasys7-May-03 10:17 
GeneralRe: Windows.forms application Pin
Adam Turner7-May-03 12:33
Adam Turner7-May-03 12:33 
GeneralRe: Windows.forms application Pin
viana7-May-03 22:10
viana7-May-03 22:10 
GeneralRe: Windows.forms application Pin
ctescu8-May-03 7:49
ctescu8-May-03 7:49 
GeneralSaving Images Pin
Steve McLenithan7-May-03 7:51
Steve McLenithan7-May-03 7:51 
GeneralRe: Saving Images Pin
Stephane Rodriguez.7-May-03 8:45
Stephane Rodriguez.7-May-03 8:45 
GeneralVC++ 6.0 && C# Pin
NHM7-May-03 6:57
NHM7-May-03 6:57 

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.