RoundedTextBox control

Bucky

Well-known member
Joined
Dec 23, 2001
Messages
791
Location
East Coast
User Rank
*Expert*
With the onset of learning more about VB.NETs OOP capabilities,
Ive taken the RoundedTextBox class and turned it into a control,
which is much easier to use and has more functionality,
inasmuch as the box is now rounded in container controls such
as Frames and Panels.

Ive had some trouble creating solutions that include this project
and a Windows app, because the control will not show up in the
Tooolbox. Id like to know if anyone else has this problem.

Comments appreciated!
 

Attachments

The background color only updates after the control receives a paint message, meaning that at design time only the BackColor of the TextBox itself is updated, not the rounded edges, when the BackColor property is changed. Otherwise it works pretty good. Glad to see you ported it over.
 
Back
Top