Re: [python-win32] File Time: win32file vs Python ?

2009-07-06 Thread Gabriel Genellina
En Sat, 04 Jul 2009 03:31:11 -0300, Robert kxrobe...@googlemail.com escribió: Guess this is wrong in win32file; or win32file looses info by early conversion to digits. There is certainly something fishy with win32file. GetFileTime/SetFileTime don't even agree about the times being local or

[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

[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

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

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(