Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
HomeAnnouncementsFree MagazinesWhite PapersSubmit Content
Discussion GroupsASP.NETWindows FormsLanguages.NET FrameworkVisual Studio.NET
Articles.NET FrameworkASP.NETToolsWindows Forms
.NET DirectoryOpen Source ProjectsUser GroupsWeb Resources
Related Topics
Visual Basic 6SQL ServerMS AccessOther DB ProductsMS Server ProductsMore Topics ...

.NET Forum / Windows Forms / WinForm General / February 2006

Tip: Looking for answers? Try searching our database.

The dreded EnableVisualStyles and External exception error

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
Joe - 22 Feb 2006 17:22 GMT
We really want to use the visual styles in our app but get that stupid
external exception error at the weirdest times.

I call it like this:

static void Main()
{
   Application.EnableVisualStyles();
   Application.DoEvents();

   Application.Run(new MyForm() );
}

The problem seems to occur sometimes when DoEvents is called again within
the application but not actually at the call. The exception is throw during
other code execution. Although, if I comment out DoEvents() it will work in
most cases.

I need to call DoEvents in some cases so I can't completely remove it.

Any suggestions?

-Joe
Charles Law - 22 Feb 2006 19:00 GMT
Hi Joe

You can enable visual styles by including a manifest for your EXE. Create a
file called YourApp.exe.manifest containing the following (replace 'YourApp'
as appropriate)

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<assemblyIdentity
   version="1.0.0.0"
   processorArchitecture="X86"
   name="YourApp.exe"
   type="win32"
/>
<description>YourApp Description</description>
<dependency>
<dependentAssembly>
       <assemblyIdentity
           type="win32"
           name="Microsoft.Windows.Common-Controls"
           version="6.0.0.0"
           processorArchitecture="X86"
           publicKeyToken="6595b64144ccf1df"
           language="*"
       />
   </dependentAssembly>
</dependency>
</assembly>

Then, put the file in the same directory as your executable.

HTH

Charles

> We really want to use the visual styles in our app but get that stupid
> external exception error at the weirdest times.
[quoted text clipped - 19 lines]
>
> -Joe
Joe - 23 Feb 2006 01:24 GMT
Thanks that works.

> Hi Joe
>
[quoted text clipped - 54 lines]
>>
>> -Joe

Free Magazines

Get these publications absolutely FREE for up to 12 months. There are no hidden fees and no obligation. Simply choose a title, complete the application form and submit it. Read more ...

Oracle MagazineNetwork ComputingComputer WorldBio-IT WorldeWeekInformation WeekInfosecurity
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.