C# non-resizing window

Started by
1 comment, last by jim bob 20 years ago
This is a simple question I believe. How can I prevent a window from being resized manually by the user? I have a nice little form, and I want to make it one size only forever. I have looked and toyed with all the form designer properties, and I can''t lock this feature. I even tried stuff like: this.Resize = false, etc. What code or attribute do I need to keep my form from being resized? Thank you.
I am not worthy of a sig! ;)
Advertisement
myForm.FormBorderStyle = FormBorderStyle.Fixed3D; 


---
tommy online: http://users.pandora.be/tommycarlier
I can''t imagine how I didn''t see that. Thank you for your help though!
I am not worthy of a sig! ;)

This topic is closed to new replies.

Advertisement