Click here to Skip to main content
16,006,006 members
Home / Discussions / C#
   

C#

 
GeneralRe: How to know when ThreadPoll is finish? Pin
Snowjim11-May-05 7:26
Snowjim11-May-05 7:26 
AnswerRe: How to know when ThreadPoll is finish? Pin
S. Senthil Kumar11-May-05 7:25
S. Senthil Kumar11-May-05 7:25 
GeneralC# inserting new XML nodes Pin
c2e11-May-05 6:54
c2e11-May-05 6:54 
GeneralRe: C# inserting new XML nodes Pin
Marc Clifton11-May-05 11:30
mvaMarc Clifton11-May-05 11:30 
GeneralRe: C# inserting new XML nodes Pin
c2e11-May-05 12:07
c2e11-May-05 12:07 
GeneralMenuitems / function calls across multiple MDI children Pin
SignMan35911-May-05 6:45
SignMan35911-May-05 6:45 
GeneralRe: Menuitems / function calls across multiple MDI children Pin
Peter Vertes11-May-05 6:54
Peter Vertes11-May-05 6:54 
GeneralRe: Menuitems / function calls across multiple MDI children Pin
Dave Kreskowiak11-May-05 7:07
mveDave Kreskowiak11-May-05 7:07 
Don't worry about all the menu merging and stuff. Just put a Print item in the File menu. In it's Click handler, you reference the active MDI child window by using the ActiveMdiChild property of the MDI Parent window, where your menu is. All you need to do to call the Print method of your child form is:
Form myChildForm = this.ActiveMdiChild;
myChildForm.Print();

This will call the Print method on whatever child form currently has the focus.


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

GeneralMultiple UI threads in a single application Pin
Neil Lamka11-May-05 6:08
Neil Lamka11-May-05 6:08 
GeneralRe: Multiple UI threads in a single application Pin
S. Senthil Kumar11-May-05 6:49
S. Senthil Kumar11-May-05 6:49 
GeneralRe: Multiple UI threads in a single application Pin
Neil Lamka11-May-05 7:08
Neil Lamka11-May-05 7:08 
Generalediting image dynamically Pin
tlepers11-May-05 6:05
tlepers11-May-05 6:05 
GeneralRe: editing image dynamically Pin
Peter Vertes11-May-05 6:59
Peter Vertes11-May-05 6:59 
GeneralRe: editing image dynamically Pin
tlepers11-May-05 21:00
tlepers11-May-05 21:00 
GeneralRe: editing image dynamically Pin
Peter Vertes12-May-05 4:22
Peter Vertes12-May-05 4:22 
GeneralReliable compression .net library Pin
Anonymous11-May-05 5:58
Anonymous11-May-05 5:58 
GeneralRe: Reliable compression .net library Pin
Mauricio Ritter11-May-05 6:00
Mauricio Ritter11-May-05 6:00 
GeneralRe: Reliable compression .net library Pin
leppie11-May-05 6:39
leppie11-May-05 6:39 
GeneralC# and Web Cams Pin
McArco11-May-05 5:48
McArco11-May-05 5:48 
GeneralUrgent Regular expression help Pin
Dot Net11-May-05 5:37
Dot Net11-May-05 5:37 
GeneralRe: Urgent Regular expression help Pin
leppie11-May-05 6:42
leppie11-May-05 6:42 
GeneralRegular expression help Pin
Dot Net11-May-05 5:36
Dot Net11-May-05 5:36 
GeneralRe: Regular expression help Pin
DavidNohejl11-May-05 5:57
DavidNohejl11-May-05 5:57 
Generalcontroling items in a dialog from another dialog Pin
Green Fuze11-May-05 4:21
Green Fuze11-May-05 4:21 
GeneralRe: controling items in a dialog from another dialog Pin
S. Senthil Kumar11-May-05 7:29
S. Senthil Kumar11-May-05 7:29 

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.