CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3

Thread: String Table

  1. #1
    Join Date
    May 1999
    Location
    Texas, USA
    Posts
    568

    String Table

    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



  2. #2
    Join Date
    Apr 1999
    Location
    Alabama, USA
    Posts
    261

    Re: String Table

    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




  3. #3
    Join Date
    May 1999
    Location
    Texas, USA
    Posts
    568

    Re: String Table

    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


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured