Re: [python-win32] AVDoc and PDDoc/How to force late binding

2006-09-25 Thread Michael S
You are right. I made a mistake, it forces early binding.However neither late nor early can discover the AcroExch.AVdoc method I need and VB does it with no problem.By the way I can force early or late binding on the Excel.Application, but for some reason not on Acrobat classes.- Original Messa

Re: [python-win32] AVDoc and PDDoc/How to force late binding

2006-09-25 Thread Simon Dahlbacka
EnsureModule forces *early* bindingĀ  On 9/25/06, Michael S <[EMAIL PROTECTED]> wrote: I am trying to force late binding, since obviously early binding does not discover the methods that I am trying to call. I ran the makepy -i from within PythonWin, to get those two lines I need to paste in into my

Re: [python-win32] AVDoc and PDDoc/How to force late binding

2006-09-25 Thread Michael S
I am trying to force late binding, since obviously early binding does not discover the methods that I am trying to call. I ran the makepy -i from within PythonWin, to get those two lines I need to paste in into my script. from win32com.client import gencache gencache.EnsureModule ... However