Textbox with Single Line Border in vb.net 2003 or 2005

  • Thread starter Thread starter Rick
  • Start date Start date
R

Rick

How do I create a textbox with a single line border so when I type text in
the box it will look like underlined?
 
How do I create a textbox with a single line border so when I type text in
the box it will look like underlined?

In a previous type project I created a class that inherited from
textbox, and for the single line underneath I simply set border = none
and then used GDI+ to draw the line (System.Drawing namespace)

Thanks,

Seth Rowe [MVP]
 
Back
Top