Click here to Skip to main content
15,902,114 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
while i am opening popup window i want to remove minimize and maximize box.
Posted
Comments
Richard MacCutchan 6-Sep-14 6:16am    
Which popup window, and what has this to do with ADO.NET?

1 solution

if you are using desktop application. then you can use following properties.

C#
//use this onload event
                this.MaximizeBox = false;
                this.MinimizeBox = false;

// or set these properties fasle in Form properties window.


if any issue then let me know.

Thanks.

-> M.U
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900