tags:

views:

76

answers:

3

Is there a <hr></hr> like in winforms? I just saw this line in a property window of an icon, is it a control or what? How can I add it into my form? Please see image:

alt text

+1  A: 

This is not a standard windows controls. This is simply a panel of height 1 and dark background.

Ramesh Soni
ok i'll try. thanks sir
yonan2236
A: 

In C#, you can use the LineShape via Visual Basic PowerPacks.

Nick Hebb
Can you sir please show me how? Thanks...
yonan2236
I got it sir..thanks :)
yonan2236
What comes next after installing?
yonan2236
The PowerPacks came preinstalled in VS 2008 +, but I'm not sure about earlier versions. Once you've installed it, the LineShape should be available in the control toolbox in the Winforms designer.
Nick Hebb
ok thank you sir...
yonan2236
A: 

No, no, it's just label or panel control with gray background and height=1. If you need to have 3D line, use apropriate border style and height=2.

Dmitry Karpezo