| View previous topic :: View next topic |
| Author |
Message |
slippppppppp Grandmaster Cheater
Reputation: 0
Joined: 08 Aug 2006 Posts: 929
|
Posted: Thu Mar 06, 2008 11:28 pm Post subject: [Delphi] Registry |
|
|
Can anyone help me,
How would i have my program run on start up
then delete the registry key out?
|
|
| Back to top |
|
 |
Henley Grandmaster Cheater
Reputation: 0
Joined: 03 Oct 2006 Posts: 671
|
Posted: Thu Mar 06, 2008 11:39 pm Post subject: |
|
|
| Code: | | C:\Documents and Settings\*******\Start Menu\Programs |
I actually never tried this, but try putting your app into that folder. My limewire used to run on startup when it was in that folder, I deleted the shortcut there and it stopped.
|
|
| Back to top |
|
 |
slippppppppp Grandmaster Cheater
Reputation: 0
Joined: 08 Aug 2006 Posts: 929
|
Posted: Thu Mar 06, 2008 11:40 pm Post subject: |
|
|
| No it won't work you have to edit the registry -____-
|
|
| Back to top |
|
 |
NothingToShow Grandmaster Cheater Supreme
Reputation: 0
Joined: 11 Jul 2007 Posts: 1579
|
Posted: Fri Mar 07, 2008 12:17 am Post subject: |
|
|
No, aznkidtroll is right.
The stuff you put in Start Menu, auto starts.
But you can do it in registry if you like.
|
|
| Back to top |
|
 |
HolyBlah Master Cheater
Reputation: 2
Joined: 24 Aug 2007 Posts: 446
|
Posted: Fri Mar 07, 2008 1:19 am Post subject: |
|
|
| Code: | | HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run |
or
| Code: | | HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Run |
Create a new String value with the name of your program and in the value the path of it.[/code]
|
|
| Back to top |
|
 |
Symbol I'm a spammer
Reputation: 0
Joined: 18 Apr 2007 Posts: 5094 Location: Israel.
|
Posted: Fri Mar 07, 2008 3:46 am Post subject: Re: [Delphi] Registry |
|
|
| slippppppppp wrote: | Can anyone help me,
How would i have my program run on start up
then delete the registry key out?  |
Run once?
| Code: | | HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\RunOnce |
|
|
| Back to top |
|
 |
|