Welcome guest. Before posting on our computer help forum, you must register. Click here it's easy and free.

Author Topic: c# sharpdevelop border style - none  (Read 3810 times)

0 Members and 1 Guest are viewing this topic.

zaryk

  • Guest
c# sharpdevelop border style - none
« on: April 08, 2008, 09:05:47 PM »
I have a form that isnt sizable, doesnt have close, maximize or minimize. I am wanting to know if there is anyway of making it sizable, but not including the close, maximize and minimize ( doesnt show them at all, not just disable).

Sidewinder



    Guru

    Thanked: 139
  • Experience: Familiar
  • OS: Windows 10
Re: c# sharpdevelop border style - none
« Reply #1 on: April 10, 2008, 12:58:19 PM »
You can do this either at run time or design time. Set the following form properties to false: maximizebox, minimizebox and controlbox.

The default settings for a form are to make it sizable. Reverse what you did to make it not sizable.

 8)
The true sign of intelligence is not knowledge but imagination.

-- Albert Einstein

zaryk

  • Guest
Re: c# sharpdevelop border style - none
« Reply #2 on: April 12, 2008, 12:35:12 AM »
cool, thanks.