在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
procedure TForm1.ModifySysdate(D: Double); var systemtime:Tsystemtime; DateTime:TDateTime; begin SetLocaleInfo(LOCALE_SYSTEM_DEFAULT, LOCALE_SSHORTDATE, 'yyyy:MM:dd'); Application.UpdateFormatSettings := False; DateTime:=Now+d; DateTimeToSystemTime(DateTime,systemtime); SetLocalTime(systemtime); end; Windows 64位系统 需要提升权限 UAC 方法如下: 1创建以下代码到uac.manifes文件类。 <?xml version="1.0" encoding="UTF-8" standalone="yes"?> <assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0"> <trustInfo xmlns="urn:schemas-microsoft-com:asm.v3"> <security> <requestedPrivileges> <requestedExecutionLevel level="requireAdministrator" uiAccess="false"> </requestedExecutionLevel> </requestedPrivileges> </security> </trustInfo> <dependency> <dependentAssembly> <assemblyIdentity type="win32" name="Microsoft.Windows.Common-Controls" version="6.0.0.0" processorArchitecture="x86" publicKeyToken="6595b64144ccf1df" language="*"> </assemblyIdentity> </dependentAssembly> </dependency> </assembly> 2.在工程的Options选项--Application-manifes 选择Custom 选择uac.manifes 即可。(D10.1版本) 如果需要调试的话,需要使用管理员权限启动Delphi |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论