[python-win32] Is there anyway to pass a VBA object to a Python COM Server and perform operations?

2015-05-12 Thread Diego Vélez Torres
Hi: I'm still working at my COM server. In my project I'm using VBA functions in Excel which in turn call the Python COM Server for farther processes. However, the code in Python calls back into Excel in order to place graphs into the spreadsheet with the calculated data. The first problem that

Re: [python-win32] Is there anyway to pass a VBA object to a Python COM Server and perform operations?

2015-05-12 Thread Mark Hammond
On 13/05/2015 2:32 AM, Diego Vélez Torres wrote: Set App_Caller = Application.Caller TheGrap = PythonCom.PlaceGraphic(Param1, Param2, App_Caller) Meanwhile in the COM code I do something like this: def PlaceGraphic(self, param1, param2, app_caller): s