Re: [python-win32] Getting Error "Pure Virtual Function Call R6025" Error

2012-10-04 Thread vamsi krishna
Hi Paul, Thank you for sharing the information. I'm started looking for the " use-after-free errors" errors. I will update you on this. Once again thank you very much for the information. Regards, Vamsi. On Wed, Oct 3, 2012 at 6:46 PM, wrote: > I don't know how Windows C++ works, but with GCC

Re: [python-win32] Getting Error "Pure Virtual Function Call R6025" Error

2012-10-03 Thread Paul_Koning
I don't know how Windows C++ works, but with GCC this error almost always indicates you're using an object after it has been freed. The reason is that freeing the object calls the destructors in inheritance order, and changes the virtual method pointer table as it does so. The end result is a

Re: [python-win32] Getting Error "Pure Virtual Function Call R6025" Error

2012-10-02 Thread Mark Hammond
[Please keep python-win32 in the CC list] On 3/10/2012 4:26 PM, vamsi krishna wrote: Hi Mark, Thank you for the reply. Please let me know what kind of information is useful in this context and I'm ready to provide the information. At first I thought of assuming the same i.e. problem with HP QTP

Re: [python-win32] Getting Error "Pure Virtual Function Call R6025" Error

2012-09-27 Thread Mark Hammond
I'm afraid there isn't enough information provided here for us to help. At face value, it sounds like a problem in the HP QTP COM libraries. Mark On 25/09/2012 2:14 PM, vamsi krishna wrote: Hi, Running on Windows 2003 Server X64,Python 2.5 (32-bit) I am having problems using win32com.clie

[python-win32] Getting Error "Pure Virtual Function Call R6025" Error

2012-09-24 Thread vamsi krishna
Hi, Running on Windows 2003 Server X64,Python 2.5 (32-bit) I am having problems using win32com.client with the HP QTP COM libraries. I'm trying to launch QTP from python by following code: import win32com.client qtp = win32com.client.Dispatch("QuickTest.Application") # starts up QTP qtp.Launc