RE: Error R6025 - pure virtual function call ??
- Posted by guest at rapideuphoria.com Apr 08, 2004
- 500 views
posted by: matthewwalkerlewis at yahoo.com Andy wrote: > I have a bound Euphoria program which occasionally fails with the > following message box: > > Microsoft Visual C++ Runtime Error > Program: C:\Program Files\Callcatcher\Callcatcher.exe > R6025 pure virtual function call > > with an OK box only. Clicking that aborts the program. > > I don't have VC++ on my system at all - so I am wondering if anyone > recognises this error? The curious thing is that my program keep > running under the message box (though I can't do anything with it) > and seems unaffected. It was replaying a speech file at the time, > and carried on doing that. > So .... ??? How were you playing the speech file? I assume you're using a dll that's causing the problem. Does the problem happen if you don't bind the program? The dll must have been built using MSVC, and some call is being made to a pure virtual function. It could be an error in the dll, or an error in the way that you're using it. Matt Lewis