- Wiki: http://zh.wikipedia.org/wiki/XPath
- XPath example: http://www.w3schools.com/xpath/xpath_examples.asp
- XPath Syntax: http://www.w3schools.com/xpath/xpath_syntax.asp
2012年3月28日 星期三
XML Path Language (XPath)
2012年3月19日 星期一
Embdded “requireAdministrator” in VS2005
<?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="<AppName>" type="win32"/>
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
<security>
<requestedPrivileges>
<requestedExecutionLevel level="requireAdministrator"/>
</requestedPrivileges>
</security>
</trustInfo>
</assembly>
將上面的copy下來檔存成.manifest, 然後開啟VS2005, 依下面步驟
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<assemblyIdentity version="1.0.0.0" processorArchitecture="X86" name="<AppName>" type="win32"/>
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
<security>
<requestedPrivileges>
<requestedExecutionLevel level="requireAdministrator"/>
</requestedPrivileges>
</security>
</trustInfo>
</assembly>
將上面的copy下來檔存成.manifest, 然後開啟VS2005, 依下面步驟
- Open your project in Microsoft Visual Studio 2005.
- Under Project, select Properties.
- In Properties, select Manifest Tool, and then select Input and Output.
- Add in the name of your application manifest file under Additional manifest files.
- Rebuild your application.
訂閱:
文章 (Atom)