1
Answer

Disable Maximize, Minimize and [X] box in MDI Child form

baggio owen

baggio owen

18y
3.1k
1
Hi

I have create an application with a MDI form.
All the MDI child forms would be maximized.
I cannot disable the maximize, minimize and [X] box of the child forms at top right corner even I had setted the child forms' maximizeBox = false, minimizeBox = false and FormBorderStyle = none.

Is it possible to disable it?!

Thx so much~
Answers (1)
0
Roei Bar

Roei Bar

NA 7.8k 0 15y
use Page.Request.UserHostAddress;
Accepted
0
Ken Barrett

Ken Barrett

NA 173 0 15y
Ok, stupid me... this seems to work.

String hostName = System.Net.Dns.GetHostName();
lblIpAdr.Text = hostName ;