Re: [python-win32] Py2exe and win32com.shell

2008-05-26 Thread Tejovathi P
hi Thanks all.It worked like a charm! Thanks once again! -Tejovathi On 5/27/08, Bill Burns <[EMAIL PROTECTED]> wrote: > > Tejovathi P wrote: > >> Hi all... >> I created an exe for my application. While generating the exe, py2exe >> reports

Re: [python-win32] Py2exe and win32com.shell

2008-05-26 Thread Tejovathi P
rson <[EMAIL PROTECTED]> wrote: > > > > On Fri, May 23, 2008 at 8:18 AM, Tejovathi P <[EMAIL PROTECTED]> > wrote: > >> >> >> I opened pythonwin and tried importing wincom.shell. Its working >> fine.! Then where am I doing wrong >> &g

[python-win32] Py2exe and win32com.shell

2008-05-23 Thread Tejovathi P
Hi all... I created an exe for my application. While generating the exe, py2exe reports that win32com.shell module is not found and continues generating exe. When I try to run the exe, I get an import error that "No module named shell"... I opened pythonwin and tried importing wincom.shell. I

[python-win32] Regarding Threads and locals()

2008-03-20 Thread Tejovathi P
Hi all, I have a GUI applicaion(along with threads). When the run button is pressed in the GUI a separate thread starts( Thread is created using beginthreadex) and does the required activity. Now, while the thread is being executed, i want the locals() present inside the thread's run function to b

Re: [python-win32] Regarding COM server and exe

2008-01-09 Thread Tejovathi P
issue is almost certainly incorrect usage of > "com_server" and "console" in the py2exe script. > > Mark > > > From: [EMAIL PROTECTED] [mailto: > [EMAIL PROTECTED] On Behalf Of Tejovathi P > Sent: Tuesday, 8 January 2008 10:04 PM > To: Pramod P G; py

Re: [python-win32] Regarding COM server and exe

2008-01-08 Thread Tejovathi P
ction.Version() MsgBox (returnvalue1) End Sub The non exe version of the COM server ie. directlly running the testCOM.pyregisters the library properly and in the VB application, the message box displays the version as 0.0.1. But, after I create the EXE file using the setup.py file and run i

Re: [python-win32] Regarding COM server and exe

2008-01-08 Thread Tejovathi P
bject("sample.lib") > > > > Thanks and regards, > > Pramod P G > > > ------ > > *From:* [EMAIL PROTECTED] [mailto: > [EMAIL PROTECTED] *On Behalf Of *Tejovathi P > *Sent:* Tuesday, January 08, 2008 3:57 PM > *To:* python-win32@python.org > *Subject:* [

[python-win32] Regarding COM server and exe

2008-01-08 Thread Tejovathi P
Hi All, I have a Python COM server. I need to deploy it on various sytems. When I run the COM server from python its showing an output " Registered : sample.lib" If I try to use the COM obj from a VB client like: obj = CreateObject("sample.lib") Its working fine without any errors Now I am try