Click to See Complete Forum and Search --> : String Table


Wayne Fuller
May 19th, 1999, 03:10 PM
I know how to retrieve strings from a string table using MFC. I am currently creating a COM dll that I would like to use the string table. Is there an ATL function equivalent to CString::LoadString, I can not find it anywhere? Or is there a WIN32 API call that can retrieve this data?

Thanks,

Wayne

John Holifield
May 19th, 1999, 03:15 PM
I don't know about an ATL version, but the MFC version of CString::LoadString, is a wrapper for the Win32 function ::LoadString.

Hope this helps,
John

Wayne Fuller
May 19th, 1999, 03:43 PM
Thanks, I must have lost my mind. I was trying so hard to find an ATL equivalent, that I forgot to just look at the MFC source code to see what they do.

Wayne