CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: ovidiucucu

Search: Search took 0.70 seconds.

  1. Re: MFC: How to pass CString to Windows API functions?

    Instead of CString::GetBuffer or CString::GetBufferSetLength plus CString::ReleaseBuffer, we can use shared MFC/ATL CStrBuf class.
    That way, the above example #4 can be re-written a little bit...
  2. MFC: How to pass CString to Windows API functions?

    Q: Many Windows API functions require LPCTSTR (pointer to a constant string) or LPTSTR (pointer to a modifiable string buffer) as parameters. How to pass CString type to these functions?

    A:

    ...
Results 1 to 2 of 2





Click Here to Expand Forum to Full Width

Featured