New Message on dotNET User Group Hyd

.Net Links

Reply
  Reply to Sender   Recommend Message 4 in Discussion
From: KishTheBest

Hi Girish,
 
You need to make the FlatStyle property of the control to System first. Then you need to create a manifest file with the name of the exe, i.e., for example if the name of the exe that gets created by the compilation be "Sample.exe", the name of the file you need to put the following content must be "Sample.exe.manifest".
 
 
<?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="Microsoft.Winweb.Sample"
    type="win32"
 />
 <description>My Manifest Testing application</description>
 <dependency>
    <dependentAssembly>
      <assemblyIdentity
        type="win32"
        name="Microsoft.Windows.Common-Controls"
        version="6.0.0.0"
        processorArchitecture="X86"
        publicKeyToken="6595b64144ccf1df"
        language="*"
      />
    </dependentAssembly>
 </dependency>
</assembly>
 
 
You can create the file by just opening a notepad and pasting the above content which is an XML format into the notepad and simply saving it with the name "Sample.exe.manifest". Make sure that this file presents in the same location where your exe is present. While deploying, you need to explicitly add this file to the "Application Folder" in File System view of deployment project so that the file gets deployed where exe is deployed. Hope this clarifies your requirement.
 
Regards,
Kishore P. Krishna,
.NET Department,
Softline Software Services (P) Ltd.,
Hyderabad.

 


View other groups in this category.


Also on MSN:
Start Chatting | Listen to Music | House & Home | Try Online Dating | Daily Horoscopes

To stop getting this e-mail, or change how often it arrives, go to your E-mail Settings.

Need help? If you've forgotten your password, please go to Passport Member Services.
For other questions or feedback, go to our Contact Us page.

If you do not want to receive future e-mail from this MSN group, or if you received this message by mistake, please click the "Remove" link below. On the pre-addressed e-mail message that opens, simply click "Send". Your e-mail address will be deleted from this group's mailing list.
Remove my e-mail address from dotNET User Group Hyd.

Reply via email to