S
Stephen Remde
is it possible to make vb.net apps have xp style buttons in xp?
Stephen
Stephen
The buttons will have the XP look and feel by default if run under XP, but
check out this link...
http://www.codeproject.com/cs/miscctrl/xp-style_button.asp
Oddly, they will not be by default.
What you need to do is change the buttons 'flatstyle' property to be system,
not standard as they probably are
Then the buttons will be XP style then.
Kerry said:Nope... you still need to make a call to
Application.EnableVisualStyles() in the application. I just tried it
here. Just changing the button's FlatStyle property did not do the
trick.
Don't use that! I've found Application.EnableVisualStyles to be very buggy
in .Net Framework 1.1. Instead, create a manifest to reference comctl32.dll
hmm, i have no function Application.EnableVisualStyles() ? is this framework
1.1? i have it installed, but my vs came with 1.0 - do i need to update
visual studios to use it?
William Ryan said:The buttons will have the XP look and feel by default if run under XP