Link to home
Start Free TrialLog in
Avatar of rsheari
rsheari

asked on

NEED VB.NET SKIN STYLE

Hello

i need free VB.net Skin and style~!~
ASKER CERTIFIED SOLUTION
Avatar of Dirk Haest
Dirk Haest
Flag of Belgium image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
note also that skinning a form requires some level of designing the GUI first in maybe Photoshop or any illustrator app like CorelDraw. you can easily use the designed graphics in your form with the right manipulation. most popular software vendors do this
download actskin4.ocx and add to you vb.net form use this code to apply a skin. You have to download a skin(.skn) file from the net too.
C#
this.axSkin1.LoadSkin(ruta);
this.axSkin1.ApplySkin(this.Handle.ToInt32());

VB
Me.AxSkin1.LoadSkin(ruta)
Me.AxSkin1.ApplySkin(Me.Handle.ToInt32())

Open in new window


or

http://skinengine.codeplex.com/

or

http://customerborderform.codeplex.com/
Avatar of Mike McCracken
Mike McCracken

This question has been classified as abandoned and is being closed as part of the Cleanup Program. See my comment at the end of the question for more details.