CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 5 of 5
  1. #1
    Join Date
    Apr 2005
    Posts
    13

    help with AnsiString!!

    ok, first off I will say that i am new to VC++ and MFC. I learned to program Java in school. Anyways, I have a program that was made with Borland and uses the AnsiString variable. Now I am using VC++6 and need to know what i can use in place of AnsiString.

    Also, is there a website (like java.sun.com) that will show me the entire MFC and C++ API like Sun does for Java?

    Thx guys!

  2. #2
    Join Date
    Oct 2002
    Location
    Germany
    Posts
    6,205

    Re: help with AnsiString!!

    Quote Originally Posted by Deshman
    Anyways, I have a program that was made with Borland and uses the AnsiString variable. Now I am using VC++6 and need to know what i can use in place of AnsiString.
    You can use std::string on any platform.

    In addition to that, you can use:

    These are all wrapper classes that make string-handling simple.
    Quote Originally Posted by Deshman
    Also, is there a website (like java.sun.com) that will show me the entire MFC and C++ API like Sun does for Java?
    MSDN

  3. #3
    Join Date
    Apr 2005
    Posts
    13

    Re: help with AnsiString!!

    thank you so much!!1

  4. #4
    Join Date
    Oct 2002
    Location
    Germany
    Posts
    6,205

    Re: help with AnsiString!!

    Quote Originally Posted by Deshman
    thank you so much!!1
    You are welcome...

    And, BTW, welcome to Codeguru...

  5. #5
    Join Date
    Apr 2005
    Posts
    13

    Re: help with AnsiString!!

    why thank you, and i'm sure i will be a frequent visitor here.

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