I am now using C++ properly thanks to all of your help.  However, when I use 
the following statement,

mystring = MemHandleLock((void *)mhandle);

it returns the errors,

ANSI C++ forbids implicit conversion from 'void *' in argument passing
ANSI C++ forbids implicit conversion from 'void *' in assignment

When I use...

mystring = MemHandleLock(mhandle);

I only get the assignment error.  I tried enclosing that single statemtent in 
an extern "C" block, I got all kinds of other errors, so that is out.  Is 
MemHandleLock() just not useable in C++?

-- 
For information on using the ACCESS Developer Forums, or to unsubscribe, please 
see http://www.access-company.com/developers/forums/

Reply via email to