User Controls
Hi Guys
I'm creating a User Control, one of the controls required is a textbox. When I add the text box to the user control I can see all the usuall properties of the text box. But when I add the user control to the form in the project only some of the properties are visible. The property I require is the CharacterCasing, I can get this property to appear by adding a Public property to the user control code, but I keep getting an overflow error when setting the property.
<Category("Apperance"), Description("Sets text Casing"), Browsable(True), Defaultvalue("Normal")>_
Public Property Casing as CharacterCasing
Get
Return Casing
End Get
Set (ByVal Value as CharacterCasing)
Casing = Value
End set
End Property
A Little help required, Thanks
Duncan
__________________
Duncan
|