Jump to content
Xtreme .Net Talk

Recommended Posts

Posted
Can you please tell me how to do that and where to get that manifest file as I do not have an extensive knowledge on Visual Basic.net? Thanks a lot!
  • *Experts*
Posted

Check out this link.

 

Attached is a zip containing the file I use - it's generic enough to use on ANY .NET executable. For development, make sure this file is in the same directory as your EXE file and named the same as your exe but with a manifest extension. So if your exe is named "WinTest.EXE" name the manifest file "WinTest.EXE.manifest".

 

-Nerseus

 

PS: Here's the contents of the txt file:

<?xml version="1.0" encoding="UTF-8" standalone="yes"?> 
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0"> 
<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>

yourapp.exe.zip

"I want to stand as close to the edge as I can without going over. Out on the edge you see all the kinds of things you can't see from the center." - Kurt Vonnegut

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...