Hello, How can I ignore the keys the user inserts into a textbox ? I've tried signing up to the keydown event, end use the e.SuppressKeyPress = true to achieve it in .NET 2005, but this is not supported by .NET 2003. Maybe use the Handle property for this ? Thanks, Eyal
E
eyalRF
@eyalRF
Posts
-
Key Processing in 2003 Question -
Good book referance on User Controls DesignHello, Can anyone recomend my on a good book that explains how to program user controls ? I found some book that explains how to use the microsoft controls, but i need to program my own. Thanks
-
C# User ControlsHello, I would like to a create a user control which composed of two basic controls, control1 and control2. I was wondering, if i can program the user control in a way that when I use the control in an another project, I could, IN DESIGN TIME, disapear one of the inner controls. i.e. there would be a proprety of the control that would control the visiblty of the controls (e.g. a pull down that would say control1, control2, both, none). Thanks.