0
A
回答
5
看一看在註冊表中的以下位置:
HKLM \軟件\微軟\的Windows \ CurrentVersion \ Run中
您可以使用TRegistry在這裏添加條目。
1
哎試試這個代碼開始在下次啓動時
procedure RunOnStartupHKCU(const sCmdLine: string;) ;
var
sKey : string;
Section : string;
ApplicationTitle : string;
begin
ApplicationTitle:='myApplication';
sKey := 'Once'
Section := 'Software\Microsoft\Windows\CurrentVersion\Run' + sKey + #0;
with TRegIniFile.Create('') do
try
RootKey := HKEY_CURRENT_USER;
WriteString(Section, ApplicationTitle, sCmdLine) ;
finally
Free;
end;
end;
您的應用程序來調用它使用這種
sAppNam:=Application.ExeName;
RunOnStartupHKCU(sAppNam) ;
相關問題
- 1. 德爾福編程手冊
- 2. 德爾福 - 在註冊表項設置完全控制
- 3. 德爾福:寫入註冊表FormDestroy不工作
- 4. 翻譯代碼DLL注入德爾福7德爾福XE2
- 5. TEdit註冊輸入(德爾福/免費帕斯卡爾)
- 6. 德爾福2009年啓動錯誤
- 7. 德爾福v.Word - 如何從德爾福
- 8. 德爾福HID Delphi7和德爾福XE2
- 9. 德爾福
- 10. 與德爾福
- 11. 德爾福
- 12. 德爾福動態數組
- 13. 德爾福
- 14. 與德爾福
- 15. 德爾福:TRegExpr
- 16. 類德爾福
- 17. 德爾福ftpgetfile
- 18. 德爾福
- 19. DES_KEY_SZ德爾福
- 20. 與德爾福
- 21. 德爾福Application.HintColor
- 22. 德爾福在註冊時間包文件位置
- 23. 德爾福在我升級到Windows 7時變得未註冊
- 24. 德爾福自動化調整圖表
- 25. OLE自動化 - WORD表格(德爾福)
- 26. 德爾福7 __ArrayList
- 27. 德爾福mswinsck.ocx問題
- 28. 德爾福,QR,WMF
- 29. 質量德爾福
- 30. 德爾福在Vista
謝謝。如果我可以,我會擁有+1你:D – HTxL 2012-02-07 20:26:54
要避免下一篇文章,最好使用HKCU。 – OnTheFly 2012-02-07 20:30:10
這取決於你是否希望它運行一個(HKCU)或全部(HKLM) – Chriseyre2000 2012-02-07 20:31:37