Creating Startup items in Visual Basic 6

What do you mean startup items? (If you mean it starts when people log in, it's a matter of where your installer puts a shortcut ;D)
 
C:\Documents and Settings\<Username>\Start Menu\Programs\Startup
No doubt there's a way to get the user's name from Visual Basic.
 
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\RunOnce

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnce
 
Back
Top