newbie custom control

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am creating a custom control library and want to incorporate several
textboxes with the ability to acept only letters, or digits, etc. Do I have
to create a seperate control for each action, or can I use an enumeration and
set the input style from the properties window? If so, how would I go about
this?
 
You may use a single control and an enumeration property for the control
class, which will define the input style.

Thanks,
Vijay.
 
Back
Top