Textbox without border

  • Thread starter Thread starter Sérgio Pinheiro
  • Start date Start date
S

Sérgio Pinheiro

Hi folks,

Does anyone knows how to create a textbox without the border...
or how to create a custom border... just as in the outlook's contacts entry
form?

tks in advance.
 
Place a textbox in the panel and make the panel 1 pixel smaller on all
sides.
 
tks Alex,

but, this adds a considerable overhead, in forms with many textboxes...
Any other idea?
 
I don't know if this helps or not.

this.txtMyTextBox.BorderStyle = System.Windows.Forms.BorderStyle.None;
 
Back
Top