C
cfyam
How can I hide the "OK" button on the form title?
-----Original Message-----
This should work against your Form object:
[C#]
this.ControlBox = false;
[VB.Net]
Me.ControlBox = False
--
Tim Wilson
Windows Embedded MVP
cfyam said:How can I hide the "OK" button on the form title?
.
James said:Is it possible to intercept the OK request and stop the
form exit?
-----Original Message-----
This should work against your Form object:
[C#]
this.ControlBox = false;
[VB.Net]
Me.ControlBox = False
--
Tim Wilson
Windows Embedded MVP
cfyam said:How can I hide the "OK" button on the form title?
.