[python-win32] using registered python com server dll from .NET

2009-07-06 Thread Sarah Abdel Razak
Hi all, I implemented a python com server and generate an executable and dll using py2exe tool. then I used regsvr32.exe to register the dll.I got a message that the registration was successful. Then I tried to add reference to that dll in .NET. But I can not find my server on the com tab of adding

[python-win32] Please help me find the correct way to call win32inet.WinHttpGetProxyForUrl

2009-07-06 Thread Fadhley Salim
I'm trying to use a feature of the Microsoft WinHttp library that has been exposed by the developers of Win32com. Unfortunately most of the library does not seem to be documented and there are no examples of the correct way to use the win32inet features via the win32com library. This is what I h

Re: [python-win32] using registered python com server dll from .NET

2009-07-06 Thread Michel Claveau
Hi! It is normal. COM servers made with Python no have TLB. dotNET, for read info on a COM server need TLB. In the same way, dotNET cannot use dynamic COM server (like Python can do and use it). Except: IronPython (the last beta version) & JScript.Net (the old, no the recent "manageable" vers

Re: [python-win32] problem in making exe of python

2009-07-06 Thread Mike Driscoll
Marium, hi all, i m new to wx python.i found difficulty in making its exe.Although m using the code for exe as: # from distutils.core import setup import py2exe import sys,glob,os if len(sys.argv) == 1: sys.argv.append("py2exe") # creates a standalone .exe file, no zip files setup(

Re: [python-win32] problem in making exe of python

2009-07-06 Thread Kevin Horn
you might look at this thread... http://aspn.activestate.com/ASPN/Mail/Message/wxpython-users/3652025 On Mon, Jul 6, 2009 at 8:59 AM, Mike Driscoll wrote: > Marium, > > hi all, >> i m new to wx python.i found difficulty in making its exe.Although m using >> the code for exe as: >> # >> from dis