Click here to Skip to main content
15,891,943 members
Home / Discussions / C#
   

C#

 
GeneralRe: openFileDialog win form Pin
Thomas Stockwell28-Jul-08 1:35
professionalThomas Stockwell28-Jul-08 1:35 
QuestionHow to draw a status bar panel ? Pin
reallyneedhelp28-Jul-08 0:48
reallyneedhelp28-Jul-08 0:48 
AnswerRe: How to draw a status bar panel ? Pin
Harvey Saayman28-Jul-08 0:55
Harvey Saayman28-Jul-08 0:55 
AnswerRe: How to draw a status bar panel ? Pin
Thomas Stockwell28-Jul-08 1:36
professionalThomas Stockwell28-Jul-08 1:36 
QuestionPrinter service using c#.net Pin
balu1234528-Jul-08 0:19
balu1234528-Jul-08 0:19 
AnswerRe: Printer service using c#.net Pin
teejayem28-Jul-08 2:54
teejayem28-Jul-08 2:54 
Questioncreating page in the same window Pin
ktamanna28-Jul-08 0:13
ktamanna28-Jul-08 0:13 
AnswerRe: creating page in the same window Pin
Harvey Saayman28-Jul-08 1:01
Harvey Saayman28-Jul-08 1:01 
are you doing a WinForms project?

if you are i think you want MDI windows....

to do that set the window you want to contain all the other windows MdiContainer property to true. Then When you create the child form set its MdiParent property to the instance of the parent.

buttonOneClick(object sender. EventArgs e)
{
    MyChildForm myChildForm = new MyChildForm();
    myChildForm.MdiParent = this; // assuming you want the child form to be inside the form your calling it from
    myChildForm.Show();
}


Harvey Saayman - South Africa
Junior Developer
.Net, C#, SQL

you.suck = (you.passion != Programming)

GeneralRe: creating page in the same window Pin
ktamanna30-Jul-08 18:24
ktamanna30-Jul-08 18:24 
AnswerRe: creating page in the same window Pin
nelsonpaixao28-Jul-08 13:29
nelsonpaixao28-Jul-08 13:29 
QuestionDateTime issue in PDA application Pin
neer127-Jul-08 23:47
neer127-Jul-08 23:47 
AnswerRe: DateTime issue in PDA application Pin
DaveyM6928-Jul-08 0:33
professionalDaveyM6928-Jul-08 0:33 
QuestionLanguage encoding problem Pin
Muammar©27-Jul-08 23:12
Muammar©27-Jul-08 23:12 
AnswerRe: Language encoding problem Pin
Frank Horn27-Jul-08 23:53
Frank Horn27-Jul-08 23:53 
GeneralRe: Language encoding problem Pin
Muammar©28-Jul-08 0:02
Muammar©28-Jul-08 0:02 
GeneralRe: Language encoding problem Pin
Frank Horn28-Jul-08 0:50
Frank Horn28-Jul-08 0:50 
GeneralRe: Language encoding problem Pin
Muammar©28-Jul-08 1:32
Muammar©28-Jul-08 1:32 
QuestionAccessing a directory on server drive Pin
punkymt127-Jul-08 21:34
punkymt127-Jul-08 21:34 
AnswerRe: Accessing a directory on server drive Pin
Muhammad Gouda27-Jul-08 21:39
Muhammad Gouda27-Jul-08 21:39 
GeneralRe: Accessing a directory on server drive Pin
punkymt127-Jul-08 21:46
punkymt127-Jul-08 21:46 
AnswerRe: Accessing a directory on server drive Pin
Harvey Saayman27-Jul-08 21:47
Harvey Saayman27-Jul-08 21:47 
AnswerRe: Accessing a directory on server drive Pin
stancrm27-Jul-08 21:48
stancrm27-Jul-08 21:48 
GeneralRe: Accessing a directory on server drive Pin
punkymt127-Jul-08 22:31
punkymt127-Jul-08 22:31 
AnswerRe: Accessing a directory on server drive [modified] Pin
mark_w_28-Jul-08 0:55
mark_w_28-Jul-08 0:55 
GeneralRe: Accessing a directory on server drive Pin
punkymt128-Jul-08 3:19
punkymt128-Jul-08 3:19 

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.