Hello everyone.
I have made a python program and converted into an executable using py2exe. Now 
I want him to start on windows startup without showing the DOS Window... I have 
registered the program on windows startup registry key:

    key = _winreg.OpenKey(_winreg.HKEY_CURRENT_USER, 
"SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Run",0, _winreg.KEY_ALL_ACCESS)
    _winreg.SetValueEx(key, "My program",0, _winreg.REG_SZ, 
'"C:\\jpia\\Programs\\Myprogram.exe" /background')

as you see I added the option "/background" but the DOS window still appears... 
well I hope you can help me. Thanks.

_________________________________________________________________
Express yourself instantly with MSN Messenger! Download today it's FREE!
http://messenger.msn.click-url.com/go/onm00200471ave/direct/01/
_______________________________________________
python-win32 mailing list
python-win32@python.org
http://mail.python.org/mailman/listinfo/python-win32

Reply via email to