CompuServe Archive

This is an archive of CompuServe forum messages from 1985 to 1995, as saved in transcripts by John Foust.

Search Results (1 messages)

#30094- Using CMapStringToObj? Message #30233
I think you want to use a CObject pointer in the function, and then after you get it, cast it to a pointer to your own class that you are mapping before using it, something like: CObject* pObj; GetNextAssoc ( …, … , pObj); CMyClass* pMyClass = (CMyClass*) pObj; There…