Re: Run Python app at startup

2008-03-04 Thread Gabriel Genellina
En Tue, 04 Mar 2008 16:36:03 -0200, SMALLp <[EMAIL PROTECTED]> escribió: >>> I create simple application. Yust an windows and "compile" it with >>> py2exe. I add registry value >>> reg add >>> HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run /v >>> MyApp /t REG_SZ /d C:\myapp.exe

Re: Run Python app at startup

2008-03-04 Thread SMALLp
Gabriel Genellina wrote: > En Sun, 02 Mar 2008 19:37:35 -0200, SMALLp <[EMAIL PROTECTED]> escribi�: > >> Hy. >> I create simple application. Yust an windows and "compile" it with >> py2exe. I add registry value >> reg add >> HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run /v >>

Re: Run Python app at startup

2008-03-02 Thread Gabriel Genellina
En Sun, 02 Mar 2008 19:37:35 -0200, SMALLp <[EMAIL PROTECTED]> escribi�: > Hy. > I create simple application. Yust an windows and "compile" it with > py2exe. I add registry value > reg add HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run > /v > MyApp /t REG_SZ /d C:\myapp.exe /f

Re: Run Python app at startup

2008-03-02 Thread dave_mikesell
On Mar 2, 3:37 pm, "SMALLp" <[EMAIL PROTECTED]> wrote: > Hy. > I create simple application. Yust an windows and "compile" it with > py2exe. I add registry value > reg add HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run /v > MyApp /t REG_SZ /d C:\myapp.exe /f' > > And it wont start

Run Python app at startup

2008-03-02 Thread SMALLp
Hy. I create simple application. Yust an windows and "compile" it with py2exe. I add registry value reg add HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run /v MyApp /t REG_SZ /d C:\myapp.exe /f' And it wont start. When i use console instead od window in py2exe i get console opend

Re: Python app at startup!

2008-03-02 Thread SMALLp
Program: import os import wx app = wx.App() frame = wx.Frame(None, -1, "MyFrame") frame.Show() app.MainLoop() python.exe setup.py py2exe from distutils.core import setup import py2exe setup(windows=['prog.py']) <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > On Feb 29, 7:21

Re: Python app at startup!

2008-02-29 Thread dave_mikesell
On Feb 29, 7:21 am, SMALLp <[EMAIL PROTECTED]> wrote: > [EMAIL PROTECTED] wrote: > > > Does it do the same thing when you run it with the Python interpreter? > > No. The programm works fine! In interupter and when i "compile" it. My guess is that you're not including something in the .exe that yo

Re: Python app at startup!

2008-02-29 Thread SMALLp
[EMAIL PROTECTED] wrote: > On Feb 28, 5:07 pm, "SMALLp" <[EMAIL PROTECTED]> wrote: >> Hy. I create simple application. Yust an windows and "compile" it with >> py2exe. I add registry value >> reg add HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run /v >> MyApp /t REG_SZ /d C:\myapp

Re: Python app at startup!

2008-02-29 Thread dave_mikesell
On Feb 28, 5:07 pm, "SMALLp" <[EMAIL PROTECTED]> wrote: > Hy. I create simple application. Yust an windows and "compile" it with > py2exe. I add registry value > reg add HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run /v > MyApp /t REG_SZ /d C:\myapp.exe /f' > > And it wont start.

Re: Python app at startup!

2008-02-28 Thread Larry Bates
SMALLp wrote: > Hy. I create simple application. Yust an windows and "compile" it with > py2exe. I add registry value > reg add HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run /v > MyApp /t REG_SZ /d C:\myapp.exe /f' > > And it wont start. When i use console instead od window i

Python app at startup!

2008-02-28 Thread SMALLp
Hy. I create simple application. Yust an windows and "compile" it with py2exe. I add registry value reg add HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run /v MyApp /t REG_SZ /d C:\myapp.exe /f' And it wont start. When i use console instead od window in py2exe i get console op