CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 4 of 4
  1. #1
    Join Date
    Feb 2004
    Posts
    301

    Linefeed in unicode text file

    Hi All,

    I am creating UNICODE text file, It is able to write UNICDE strings but am not able to give linefed. I read in msdn, that the strings involving linefeed/carriage return will be suppressed meaning Cant I give a new line?

    Please suggest me

    Thanks in Advance
    Chitra

  2. #2
    VictorN's Avatar
    VictorN is offline Super Moderator Power Poster
    Join Date
    Jan 2003
    Location
    Hanover Germany
    Posts
    20,430

    Re: Linefeed in unicode text file

    Could you explain more carefully what your problem is and what documentation you are refering to?

  3. #3
    Join Date
    Jan 2004
    Location
    Upper Austria
    Posts
    215

    Re: Linefeed in unicode text file

    in my embedded vc++ apps, which are all unicode, using
    Code:
    _T("\r\n")
    worked well...
    reboot, and everything is good

    visit my website at hochleistung.at

  4. #4
    Join Date
    Oct 2002
    Location
    Timisoara, Romania
    Posts
    14,360

    Re: Linefeed in unicode text file

    I am creating UNICODE text file, It is able to write UNICDE strings but am not able to give linefed. I read in msdn, that the strings involving linefeed/carriage return will be suppressed meaning Cant I give a new line?
    You must have misunderstood. Can you point to that MSDN page?
    Marius Bancila
    Home Page
    My CodeGuru articles

    I do not offer technical support via PM or e-mail. Please use vbBulletin codes.

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