Click here to Skip to main content
15,909,437 members
Home / Discussions / C#
   

C#

 
QuestionDataGridView button problem Pin
udikantz4-Oct-07 9:20
udikantz4-Oct-07 9:20 
QuestionIssues with Mutlithreading and STA [modified] Pin
Aaron VanWieren4-Oct-07 8:53
Aaron VanWieren4-Oct-07 8:53 
AnswerRe: Issues with Mutlithreading and STA Pin
led mike4-Oct-07 9:52
led mike4-Oct-07 9:52 
GeneralRe: Issues with Mutlithreading and STA Pin
Aaron VanWieren4-Oct-07 10:34
Aaron VanWieren4-Oct-07 10:34 
AnswerRe: Issues with Mutlithreading and STA Pin
Luc Pattyn4-Oct-07 11:57
sitebuilderLuc Pattyn4-Oct-07 11:57 
GeneralRe: Issues with Mutlithreading and STA Pin
Aaron VanWieren4-Oct-07 12:12
Aaron VanWieren4-Oct-07 12:12 
GeneralRe: Issues with Mutlithreading and STA Pin
Luc Pattyn4-Oct-07 12:39
sitebuilderLuc Pattyn4-Oct-07 12:39 
QuestionProblems with opening Child Window in MDI Pin
RichardAlbrecht4-Oct-07 8:23
RichardAlbrecht4-Oct-07 8:23 
I have a main form with menu options to open child forms within this main form window.
Problem I am seeing is that I get scroll bars when I do this. if I move around with the scroll bars they disappear and give me what I wanted.

Now if I make the menu invisible the child form opens correctly. But I need the menu bar so other child forms can be opened.

The goals is the following for every child form opened;
• Without scroll bars
• Without control box
• With the main menu bar still visible
• Child window docked nicely.

Does anyone have ideas as to why I am getting this behavior and how I can get the behavior I want?

Sample of the current code to open the child form from the main form.
private void menuBornEntry_Click(object sender, System.EventArgs e)
{
/// Performing Born Entry activity . . .
frmBornEntry dlgBornEntry = new frmBornEntry () ;
dlgBornEntry.MdiParent = this ;
dlgBornEntry.Activated += new EventHandler(ChildWindow_Opened);
dlgBornEntry.Closed += new EventHandler(ChildWindow_Closed);
dlgBornEntry.Dock = DockStyle.Fill ;
dlgBornEntry.Show () ;
}

Thanks
Rich
AnswerRe: Problems with opening Child Window in MDI Pin
KaineDunno4-Oct-07 8:38
KaineDunno4-Oct-07 8:38 
GeneralRe: Problems with opening Child Window in MDI Pin
RichardAlbrecht4-Oct-07 9:12
RichardAlbrecht4-Oct-07 9:12 
GeneralRe: Problems with opening Child Window in MDI Pin
Pete O'Hanlon4-Oct-07 10:40
mvePete O'Hanlon4-Oct-07 10:40 
QuestionBeing more generic Pin
Ryno Burger4-Oct-07 8:18
Ryno Burger4-Oct-07 8:18 
AnswerRe: Being more generic Pin
MartyExodus4-Oct-07 8:42
MartyExodus4-Oct-07 8:42 
AnswerRe: Being more generic Pin
PIEBALDconsult4-Oct-07 9:09
mvePIEBALDconsult4-Oct-07 9:09 
AnswerRe: Being more generic Pin
PIEBALDconsult4-Oct-07 9:14
mvePIEBALDconsult4-Oct-07 9:14 
AnswerRe: Being more generic Pin
Pete O'Hanlon4-Oct-07 10:37
mvePete O'Hanlon4-Oct-07 10:37 
AnswerRe: Being more generic [modified] Pin
Nissim Salomon4-Oct-07 11:05
Nissim Salomon4-Oct-07 11:05 
QuestionPost blog using C# Pin
Phoen254-Oct-07 8:02
Phoen254-Oct-07 8:02 
AnswerRe: Post blog using C# Pin
Judah Gabriel Himango4-Oct-07 9:13
sponsorJudah Gabriel Himango4-Oct-07 9:13 
AnswerRe: Post blog using C# Pin
Pete O'Hanlon4-Oct-07 10:44
mvePete O'Hanlon4-Oct-07 10:44 
QuestionSlide-down/up Menubar... Pin
hostopolis4-Oct-07 7:25
hostopolis4-Oct-07 7:25 
Questionreading byte[] instead of binary reader Pin
Xmen Real 4-Oct-07 6:38
professional Xmen Real 4-Oct-07 6:38 
AnswerRe: reading byte[] instead of binary reader Pin
Rob Philpott4-Oct-07 7:05
Rob Philpott4-Oct-07 7:05 
GeneralRe: reading byte[] instead of binary reader Pin
Xmen Real 4-Oct-07 14:23
professional Xmen Real 4-Oct-07 14:23 
AnswerRe: reading byte[] instead of binary reader Pin
Lutosław4-Oct-07 7:23
Lutosław4-Oct-07 7:23 

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.