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

C#

 
GeneralRe: Help required abt Dynamic dll. Pin
Shashidharreddy6-May-05 0:03
Shashidharreddy6-May-05 0:03 
GeneralGet Excel-Word ref Pin
MBGeorge4-May-05 20:06
MBGeorge4-May-05 20:06 
GeneralHelp -- TreeView Pin
Umair Tariq4-May-05 20:05
Umair Tariq4-May-05 20:05 
GeneralRe: Help -- TreeView Pin
S. Senthil Kumar4-May-05 21:36
S. Senthil Kumar4-May-05 21:36 
GeneralOpening mdi child from mdi child Pin
ninja26054-May-05 20:01
ninja26054-May-05 20:01 
GeneralRe: Opening mdi child from mdi child Pin
Dave Kreskowiak5-May-05 4:32
mveDave Kreskowiak5-May-05 4:32 
GeneralRe: Opening mdi child from mdi child Pin
ninja26055-May-05 19:29
ninja26055-May-05 19:29 
GeneralRe: Opening mdi child from mdi child Pin
Dave Kreskowiak6-May-05 2:08
mveDave Kreskowiak6-May-05 2:08 
One potential problem I see is that you're using .ActiveForm to set the parent of the child form. Don't. Use a known reference, that you're sure is the correct form, to set the parent. Since child forms can't have child forms of their own, there's no reason to use .ActiveForm to set the parent of a child.
frmDoNext objfrmDoNext = new frmDoNext();
objfrmDoNext.MdiParent = this;
// or if this code is running from another child form,
// and it really shouldn't be from your description...
objfrmDoNext.MdiParent = this.MdiParent;
objfrmDoNext.Show();



RageInTheMachine9532
"...a pungent, ghastly, stinky piece of cheese!" -- The Roaming Gnome

GeneralRe: Opening mdi child from mdi child Pin
ninja26056-May-05 3:57
ninja26056-May-05 3:57 
Generalsms to mobiles from Web application Pin
din butt4-May-05 19:57
din butt4-May-05 19:57 
GeneralNeed help with translation from VB.Net Pin
royg774-May-05 19:53
royg774-May-05 19:53 
GeneralRe: Need help with translation from VB.Net Pin
Mathew Hall4-May-05 20:27
Mathew Hall4-May-05 20:27 
GeneralRe: Need help with translation from VB.Net Pin
royg774-May-05 22:25
royg774-May-05 22:25 
GeneralRe: Need help with translation from VB.Net Pin
Mathew Hall4-May-05 23:52
Mathew Hall4-May-05 23:52 
GeneralRe: Need help with translation from VB.Net Pin
royg775-May-05 1:02
royg775-May-05 1:02 
QuestionCrystal Report throw and exception?? Pin
MJay4-May-05 18:55
MJay4-May-05 18:55 
AnswerRe: Crystal Report throw and exception?? Pin
MBGeorge4-May-05 19:13
MBGeorge4-May-05 19:13 
GeneralC# ArrayList Pin
Mitchell McCollum4-May-05 18:00
Mitchell McCollum4-May-05 18:00 
GeneralRe: C# ArrayList Pin
Mathew Hall4-May-05 18:38
Mathew Hall4-May-05 18:38 
GeneralSVG DOM Pin
Victor Boctor4-May-05 16:28
Victor Boctor4-May-05 16:28 
GeneralScreen Scraping Pin
Anonymous4-May-05 16:26
Anonymous4-May-05 16:26 
GeneralRe: Screen Scraping Pin
keith maddox5-May-05 5:42
keith maddox5-May-05 5:42 
Generalplay movi file by c# Pin
abugalib4-May-05 15:22
abugalib4-May-05 15:22 
GeneralRe: play movi file by c# Pin
MoustafaS5-May-05 0:55
MoustafaS5-May-05 0:55 
Generalmultiple same taskbarnotifier in C# Pin
dwark1064-May-05 14:57
dwark1064-May-05 14: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.