Horizontal Rule

  • Thread starter Thread starter Matthew Morvant
  • Start date Start date
M

Matthew Morvant

Am I blind, or does this control not exist? I just want to be able to draw
a line like I did in VB6.

Matthew
 
There's no horizontal rule, but you could drop in a label and set the text
to a series of underscores--yes, I know it's an ugly hack :-)
 
I use a Panel with a BackColor = Color.Black and Height = 1. I think
this is the best option
 
"Adam Tatusko, MCSD .NET, MCAD .NET, MCDBA, MCSE, MCSA"
I use a Panel with a BackColor = Color.Black and Height = 1. I think
this is the best option

Depends on what you want to archieve. If you want to have the typical 3D
look, a panel might not be the best choice. If you want a simple black
line, the solution you posted will work.
 
Back
Top