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

Search:

Type: Posts; User: sunny_a42000@yahoo.com

Search: Search took 0.01 seconds.

  1. Re: CFile write unicode text in wince

    Yes the write function was called through another function which gets (CString myString) as argument. When I passed char[] type, it worked without complaining.

    I managed to write the text part now...
  2. Re: CFile write unicode text in wince

    Thanks for the replies Alan

    So I modified the codes as follows, but I'm still getting the same result


    char StringToWrite[500];
    ...
  3. Re: CFile write unicode text in wince

    Just to make sure, you meant MultiByteToWideChar conversion, correct?
  4. CFile write unicode text in wince

    Hello everybody

    I'm trying to write some texts into html file using CFile::Write function. Below is what I'm using.

    mFile.Write(myString,myString.GetLength() * sizeof(TCHAR));

    As a result in...
Results 1 to 4 of 4





Click Here to Expand Forum to Full Width

Featured