Click here to Skip to main content
15,902,275 members
Home / Discussions / C#
   

C#

 
QuestionHow to make a loading screen? Pin
Anonymous24-Apr-05 14:43
Anonymous24-Apr-05 14:43 
GeneralFill many combo in a fORm fROm DB Pin
Jassim Rahma24-Apr-05 11:38
Jassim Rahma24-Apr-05 11:38 
GeneralRe: Fill many combo in a fORm fROm DB Pin
Kodanda Pani24-Apr-05 18:28
Kodanda Pani24-Apr-05 18:28 
GeneralMDI Child without Min, Max or X Pin
Jassim Rahma24-Apr-05 11:30
Jassim Rahma24-Apr-05 11:30 
GeneralRe: MDI Child without Min, Max or X Pin
Ashok Dhamija24-Apr-05 18:17
Ashok Dhamija24-Apr-05 18:17 
GeneralRe: MDI Child without Min, Max or X Pin
Kodanda Pani24-Apr-05 18:32
Kodanda Pani24-Apr-05 18:32 
GeneralRe: MDI Child without Min, Max or X Pin
Luis Alonso Ramos24-Apr-05 20:18
Luis Alonso Ramos24-Apr-05 20:18 
GeneralRe: MDI Child without Min, Max or X Pin
Ashok Dhamija24-Apr-05 21:06
Ashok Dhamija24-Apr-05 21:06 
Use the following code (i.e., in the Load event of the Child form). It should solve your problem, as I could test in my sample program. This code will give you a child window with no Max, Mix, Close (i.e., X) buttons and with fully maximized child window, as desired by you. You can still access other child windows from the Window menu of the MDI Parent window which displays links to different child windows.
private void ChildWindow_Load(object sender, System.EventArgs e)
		{
			this.Dock = DockStyle.Fill;
			this.FormBorderStyle = FormBorderStyle.None;
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.ControlBox = false;
		}

QuestionA syntax error or logic? Pin
Tugbay Sahin24-Apr-05 9:26
Tugbay Sahin24-Apr-05 9:26 
AnswerRe: A syntax error or logic? Pin
Dave Kreskowiak24-Apr-05 16:31
mveDave Kreskowiak24-Apr-05 16:31 
GeneralRe: A syntax error or logic? Pin
Anonymous24-Apr-05 19:51
Anonymous24-Apr-05 19:51 
GeneralBinary Reader Pin
24-Apr-05 9:24
suss24-Apr-05 9:24 
GeneralRe: Binary Reader Pin
Dave Kreskowiak24-Apr-05 16:30
mveDave Kreskowiak24-Apr-05 16:30 
GeneralRe: Binary Reader Pin
Kodanda Pani24-Apr-05 19:58
Kodanda Pani24-Apr-05 19:58 
GeneralBinary Reader Pin
Member 190895324-Apr-05 9:19
Member 190895324-Apr-05 9:19 
GeneralRe: Binary Reader Pin
Polis Pilavas24-Apr-05 10:42
Polis Pilavas24-Apr-05 10:42 
QuestionEdit TreeNode text ??? Pin
gyokusei24-Apr-05 6:47
gyokusei24-Apr-05 6:47 
AnswerRe: Edit TreeNode text ??? Pin
Polis Pilavas24-Apr-05 6:55
Polis Pilavas24-Apr-05 6:55 
AnswerRe: Edit TreeNode text ??? Pin
tommazzo24-Apr-05 10:22
tommazzo24-Apr-05 10:22 
AnswerRe: Edit TreeNode text ??? Pin
NassosReyzidis25-Apr-05 23:30
NassosReyzidis25-Apr-05 23:30 
General== or String.Equals() Pin
tommazzo24-Apr-05 6:43
tommazzo24-Apr-05 6:43 
GeneralRe: == or String.Equals() Pin
S. Senthil Kumar24-Apr-05 19:12
S. Senthil Kumar24-Apr-05 19:12 
GeneralRe: == or String.Equals() Pin
tommazzo26-Apr-05 2:48
tommazzo26-Apr-05 2:48 
Generalwin form Pin
vuthaianh24-Apr-05 2:55
vuthaianh24-Apr-05 2:55 
GeneralRe: win form Pin
Polis Pilavas24-Apr-05 3:14
Polis Pilavas24-Apr-05 3:14 

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.