[python-win32] How to assign a value to a property which must be used as a method to correctly pass the arguments

2007-02-15 Thread Stefan Mallepell
Hi I have a "show stopper" with the win32com module. The com object I have to write a client to, has a interface where the properties show as methods (see interface at the end of this mail) (# The method AsCurrencybyName is actually a property, but must be used as a method to correctly pass t

[python-win32] win32file.ReadDirectoryChangesW Missing some events even with high heap size?

2007-02-15 Thread Mark
Hello, I have recently written a tool that heavily depends on win32file.ReadDirectoryChangesW. Firstly, It fires potentially hundreds of notifications for a simple save operation. And for a windows copy operation it fires virtually no resaults untill near the end of the copy. Point being it w

Re: [python-win32] win32file.ReadDirectoryChangesW Missing some events even with high heap size?

2007-02-15 Thread Tim Golden
Mark wrote: > Firstly, It fires potentially hundreds of notifications for a simple > save operation. That surprised me, although it does depend on what you call "a simple save operation". But then I saved a trivial Word doc (assuming you meant something like that) and I did indeed see nearly 50

Re: [python-win32] How to assign a value to a property which must be used as a method to correctly pass the arguments

2007-02-15 Thread Stefan Mallepell
Hi Just to inform you that it's solved. I only had to read the interface file properly ... > def SetAsCurrencybyName(self, _tableID=defaultNamedNotOptArg, > _fldID=defaultNamedNotOptArg, arg2=defaultUnnamedArg): So >o.Table.SetAsCurrencybyName("DKO","AUF_NR", 268) does the trick ... Sorr