欢迎光临
我们一直在努力

自动开始上次关机时关闭的应用_visualbasic教程

建站超值云服务器,限时71元/月

两点关键:
1检测是Windows关闭引起的QueryUnload事件。
2改写Software\Microsoft\Windows\CurrentVersion\RunOnce

声明:
DeclareFunctionRegCloseKeyLib”advapi32.dll”Alias”RegCloseKey”(ByValhKeyAsLong)AsLong
DeclareFunctionRegCreateKeyLib”advapi32.dll”Alias”RegCreateKeyA”(ByValhKeyAsLong,ByVallpSubKeyAsString,phkResultAsLong)AsLong
DeclareFunctionRegSetValueExLib”advapi32.dll”Alias”RegSetValueExA”(ByValhKeyAsLong,ByVallpValueNameAsString,ByValReservedAsLong,ByValdwTypeAsLong,lpDataAsAny,ByValcbDataAsLong)AsLongNotethatifyoudeclarethelpDataparameterasString,youmustpassitByValue.

在主Form中增加:

PublicConstREG_SZ=1
PublicConstHKEY_CURRENT_USER=&H80000001

PrivateSubForm_QueryUnload(CancelasInteger,UnloadModeasInteger)
DimhKeyAsLong
DimstrRunCmdAsString
IfUnloadMode=vbAppWindowsThen
strRunCmd=App.Path&”\”&App.EXEName&”.EXE”
CallRegCreateKey(HKEY_CURRENT_USER,”Software\Microsoft\Windows\CurrentVersion\RunOnce”,hKey)
CallRegSetValueEx(hKey,”MyApp”,0&,REG_SZ,ByValstrRunCmd,Len(strRunCmd) 1)
CallRegCloseKey(hKey)
Endif
EndSub->

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » 自动开始上次关机时关闭的应用_visualbasic教程
分享到: 更多 (0)