well ok, my language is a bit different so the code will be too, but i'm sure you will understand. The key here is maths in some of the controls, others are easier.
i'm not sure what you can and can't do cause I don't code in your language but here's an example, maybe you can even optimize it, i'm just showing you "a way"
Custom Button:
1) Create Graphics of the button in photoshop (or download them? I dunno, I make them myself..)
2) insert bitmap object
3) create code, that when you hover over the image, it changes the graphic of the object to your "ButtonHover.jpg" file.
4) Create code that when you click on it, it changes the image to a clicked picture, and when released, back to the normal button picture. also run code from the actual button that you want it to do.
Slider Object:
1) insert a custom photoshopped slider as a bitmap object.
2) insert a custom photoshopped slider BUTTON ontop of that.
3) Basic code for when you click-down on button:
MinX = *X-Co-ordinate of the 0-value position of scroll button (Left)
MaxX = *X-Co-ordinate of the 100% position of scroll button (Right)
For i = 1 to infinity
MouseX = *get current mouse X position vbcode*
if MouseX < MinX
MinX = MouseX
end
if MouseX > MaxX
MouseX = MaxX
end
PercentageValue = (MouseX - MinX)/(MaxX - MinX)
Move Button to Correct position on screen (Using MouseX Value)
Refresh
Next i
4) when you release the mouse button:
-Exit Loop
-use "PercentageValue" as needed.
That isn't actual code - I dunno VB/.NET but that is one way using bitmap objects, hope you understand.
just use your brain and basic commands to move stuff around/etc - it's really easy, I just can't give you working code cause i don't know ur language...heh..