vb.net development tools

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello
Does anyone know of any company offering development tools that will give me the look and feel of windows x
in my vb.net application. Any help would be greatly appreciated.

Thanx in Advance

Geri
 
Geraldine Hobley said:
Hello,
Does anyone know of any company offering development tools
that will give me the look and feel of windows xp
in my vb.net application. Any help would be greatly appreciated.

In VB 2003, call System.Windows.Forms.Application.EnableVisualStyles

In VB 2002, add a manifest file (AFAIR). Search this group for "visual
styles" (that's what you mean?).


--
Armin

How to quote and why:
http://www.plig.net/nnq/nquote.html
http://www.netmeister.org/news/learn2quote.html
 
* "=?Utf-8?B?R2VyYWxkaW5lIEhvYmxleQ==?= said:
Does anyone know of any company offering development tools that will give me the look and feel of windows xp
in my vb.net application. Any help would be greatly appreciated.

Wait for VS 2005. Visual Styles will be supported within the IDE with
this IDE.

Currently you can use a manifest file with "devenv.exe" to enable visual
styles within the ide's form editor, but that's not recommended because
it will break imagelists.

<URL:http://msdn.microsoft.com/library/en-us/dnwxp/html/xptheming.asp>

My FAQ:

NET 1.0:

Set the controls' 'FlatStyle' properties to 'System', then add an
application manifest.

Tools

<URL:http://www.msjogren.net/dotnet/eng/tools/default.asp>
-> "ThemeMe"

Anternativ:

<URL:http://dotnet.mvps.org/dotnet/samples/tools/>
-> "ThemeUtil"

MSDN:

VS.NET Addin for using XP visual styles
<URL:http://tinyurl.com/37yk>

Using XP Visual Styles in Windows Forms apps
<URL:http://tinyurl.com/37yi>

..NET 1.1:

<URL:http://msdn.microsoft.com/msdnmag/issues/03/03/WindowsForms/default.aspx>

\\\
Application.EnableVisualStyle()
Application.DoEvents()
///
 
Back
Top