Click here to Skip to main content
15,889,216 members
Home / Discussions / C#
   

C#

 
AnswerRe: How to get the IP Number of the server on which my app is running Pin
Rama Krishna Vavilala6-May-03 9:31
Rama Krishna Vavilala6-May-03 9:31 
GeneralRe: How to get the IP Number of the server on which my app is running Pin
Ranjan Banerji6-May-03 9:54
Ranjan Banerji6-May-03 9:54 
GeneralRe: How to get the IP Number of the server on which my app is running Pin
Ranjan Banerji6-May-03 10:24
Ranjan Banerji6-May-03 10:24 
AnswerRe: How to get the IP Number of the server on which my app is running Pin
Vasudevan Deepak Kumar7-May-03 1:54
Vasudevan Deepak Kumar7-May-03 1:54 
GeneralRe: How to get the IP Number of the server on which my app is running Pin
Ranjan Banerji7-May-03 3:45
Ranjan Banerji7-May-03 3:45 
GeneralRe: How to get the IP Number of the server on which my app is running Pin
Vasudevan Deepak Kumar7-May-03 3:59
Vasudevan Deepak Kumar7-May-03 3:59 
GeneralRe: How to get the IP Number of the server on which my app is running Pin
Ranjan Banerji7-May-03 11:17
Ranjan Banerji7-May-03 11:17 
GeneralForm Design Quandries Pin
RB@Emphasys6-May-03 7:54
RB@Emphasys6-May-03 7:54 
Hey All,

I have an MDI parent Container, I dock a tree view control to the left of that container, and bring up various child forms on the right side of that container. Im having an issue with this, I dont want the user to beable to resize or move the child forms I bring up, I want it all done through the treeview control. When I maximize the code in the form, I set the Control Box, Minimize, and Maximize properties to false, but for some odd reason it still displays the control box and other buttons in the file menu bar of the parent container. The funny thing is, it has disabled the close and minimize buttons. Another odd point to consider is that the restore button is enabled, so if the user clicks it, my form will shrink down to its original size, but after you click the restore button and only after you click the restore button, the control box goes away. Heres the code

this.SuspendLayout();
Form cForm = new Form();
cForm.MdiParent = this;
cForm.WindowState = FormWindowState.Maximized;
cForm.FormBorderStyle = FormBorderStyle.None;
cForm.MaximizeBox = false;
cForm.MinimizeBox = false;
cForm.ControlBox = false;
cForm.Show();
this.ResumeLayout();

Any Ideas would be greatly appreciated.

Thanks,
Ryan
GeneralRe: Form Design Quandries Pin
Stephane Rodriguez.6-May-03 9:07
Stephane Rodriguez.6-May-03 9:07 
GeneralRe: Form Design Quandries Pin
RB@Emphasys6-May-03 9:12
RB@Emphasys6-May-03 9:12 
GeneralRe: Form Design Quandries Pin
RB@Emphasys6-May-03 9:21
RB@Emphasys6-May-03 9:21 
GeneralRe: Form Design Quandries Pin
Stephane Rodriguez.6-May-03 9:20
Stephane Rodriguez.6-May-03 9:20 
GeneralRe: Form Design Quandries Pin
RB@Emphasys6-May-03 9:22
RB@Emphasys6-May-03 9:22 
GeneralRelated to Files Pin
Kant6-May-03 7:42
Kant6-May-03 7:42 
GeneralRe: Related to Files Pin
Stephane Rodriguez.6-May-03 7:58
Stephane Rodriguez.6-May-03 7:58 
GeneralRe: Related to Files Pin
Kant6-May-03 8:24
Kant6-May-03 8:24 
GeneralRe: Related to Files Pin
Stephane Rodriguez.6-May-03 8:56
Stephane Rodriguez.6-May-03 8:56 
GeneralRe: Related to Files Pin
Daniel Turini6-May-03 8:21
Daniel Turini6-May-03 8:21 
GeneralSplit the file Pin
Kant6-May-03 4:49
Kant6-May-03 4:49 
GeneralRe: Split the file Pin
Stephane Rodriguez.6-May-03 5:49
Stephane Rodriguez.6-May-03 5:49 
GeneralRe: Split the file Pin
Kant6-May-03 6:12
Kant6-May-03 6:12 
GeneralRe: Split the file Pin
Stephane Rodriguez.6-May-03 6:40
Stephane Rodriguez.6-May-03 6:40 
GeneralRe: Split the file Pin
Kant6-May-03 6:54
Kant6-May-03 6:54 
GeneralRe: Split the file Pin
Stephane Rodriguez.6-May-03 6:59
Stephane Rodriguez.6-May-03 6:59 
Questionhow to write C# Applet, display it in a web page and the requirement? Pin
zoltix6-May-03 2:36
zoltix6-May-03 2:36 

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.