Hi.
I'm now moving from VB6 to VB2005.
I would like to know if it is possible to set the height of a trackbar less then 45px (just like in vb6).
Thank you.
Printable View
Hi.
I'm now moving from VB6 to VB2005.
I would like to know if it is possible to set the height of a trackbar less then 45px (just like in vb6).
Thank you.
Hi,Quote:
Originally Posted by RS_Arm
Here's a link about the Trackbar property;
http://msdn2.microsoft.com/en-us/lib...ht(vs.80).aspx
Hope it helps,
sparrow1
Thanks for the link.
When I past the declaration (Public Overridable Property Height As Single), hiting Enter, what get is this code:
What should I do next?Code:Public Overridable Property Height() As Single
Get
End Get
Set(ByVal value As Single)
End Set
End Property
In Design View, if you set the Trackbar's Autosize property to False, then you will be able to set it to any height that you like.
Now I'm embarrassed. :o
That works.
Thank you SuperSparks.
You're very welcome :)