Please, can somebody tell me how can I make those buttons and icons in the top of the MDI Parent form invisible? It's a bornig school project... Please help, I need it fast Screenshot
There are a few really good C# forums in the web, you will get immediate help there. All you need to do is to use some search engine
If you make those particular buttons invisible aren't you turning off the MDI capability of the app? Perhaps you'd be better off with an SDI style app and switch the content control as needed.
the problem is thaz i'm loading all form into the memory at startup... And if forms are closed in that way the program will crash. I just need to turn off those buttons. If i won't find solution then i will be forced to write code that will automatically load my forms in the background if they are closed in that way... It's pain in the ass because i have many forms and it's not a profesional solution but thanks on your time...
You could try catching the FormClosing event for each form/ control and setting the Cancel argument to false to prevent the form really closing. Instead set the Visible property to false to hide the form to make it look to the user as though it's closed when it hasn't really.