eversion

阅读 / 问答 / 标签

HardwareVersion:MP1是什么意思

硬件版本维修包。其HardwareVersion指的是电脑系统里的固化到硬件中的程序,即硬件版本,其中MP是MaintenancePack的简称,维修包的意思,合起来HardwareVersion:MP1的意思就是硬件版本维修包。

AssemblyVersion和AssemblyFileVersion的区别

n.assembly (名词 noun)( 与会者; 为了特定目的聚集在一起的人)The former president addressed a large assembly.前总统向众多的与会者讲了话。the right of assembly集会权(大写)立法机构;议会;(美国有些州的)州议会众议院the assembly of the airplane parts飞机部件的装配配件n. parliament (名词 noun)议会,国会-----ONLYHe was the first farm-worker to go into parliament.他是第一个进入议会的农场工人。(大写)(英国,加拿大等的)国会The new system should come into force at the dissolution of the present parliament.新制度应在本届议会解散时生效。

update to reversion会默认更新至哪个版本?

tortoiseSVN中update to reversion会自动定位在最新版本,不过可以在show log中选择要回转的版本。但是update后本地的版本控制不是最新的,提交会冲突。解决冲突的办法可参考http://zhidao.baidu.com/link?url=CSkJynQxLbgSP9GHs9TXQbBxgsLDtP6bzTEx0hYOUqYAHQZ7dT1JdPt5yBFii-8yLn3ONF7B6azKGYRoo7wLDq不知对你还有用没。。。

请教GetFileVersionInfo的用法

很久以前的代码,凑合看吧,那个namepath是文件路径;s1,s2什么的就不用说了吧var InfoSize , Zero : DWORD; VersionInfo ,Info : Pointer; Translation: PLANGANDCODEPAGE; InfoPath : String;begin InfoSize := GetFileVersionInfoSize(PChar(NamePath),Zero); if InfoSize = 0 then begin Exit; end; GetMem(VersionInfo,InfoSize); try if Not GetFileVersionInfo(PChar(NamePath),0,InfoSize,VersionInfo) then begin Exit; end; if VerQueryValue(VersionInfo, "VarFileInfoTranslation", Pointer(Translation), InfoSize) then begin InfoPath := "StringFileInfo" + inttoHex(Translation^.wLanguage, 4) + inttoHex(Translation^.wCodePage, 4) + ""; GetMem(Info, 2000); VerLanguageName(Translation^.wLanguage, Info, 2000); end else begin//set default value InfoPath := "StringFileInfo40904E4"; end; if VerQueryValue(VersionInfo, PChar(InfoPath + "ProductVersion"), Info, InfoSize) then S1 := string(PChar(Info)); //版本; if VerQueryValue(VersionInfo, PChar(InfoPath + "CompanyName"), Info, InfoSize) then S2 := string(PChar(Info)); //厂商; if VerQueryValue(VersionInfo, PChar(InfoPath + "LegalTrademarks"), Info, InfoSize) then S3 := string(PChar(Info)); // if VerQueryValue(VersionInfo, PChar(InfoPath + "FileDescription"), Info, InfoSize) then S4 := string(PChar(Info)); //描述; finally FreeMem(VersionInfo, InfoSize); end;end;