Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6109227
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T14:22:52+00:00 2026-05-23T14:22:52+00:00

CString szMsg; //Other non related code //stOrderInfo.bstrOrderNum is defined as a _bstr_t szMsg +=

  • 0
CString szMsg;

//Other non related code

//stOrderInfo.bstrOrderNum is defined as a _bstr_t
szMsg += ", Order: " + stOrderInfo.bstrOrderNum;

I’m converting the above from VS 6.0 to VS2k10 and I’m getting the following error (compiles in VS 6.0):

error C2593: 'operator +=' is ambiguous

What exactly does this mean and how can I fix it?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T14:22:52+00:00Added an answer on May 23, 2026 at 2:22 pm

    Because you’ve hard-coded “, Order: “ the compiler is having a hard time to decide which type it should be.

    The obvious type should be CString, but it might try to make it to some other string type, and add the number to it.

    So it probably can’t decide if it’s a CString or another string type. So it can’t decide what type you’re adding to szMsg.

    You could just use a type cast:

    szMsg += (CString)(", Order: ") + (CString)((char *)(stOrderInfo.bstrOrderNum));
    

    Cast between string types:

    How to: Convert Between Various String Types

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a _bstr_t variable bstrErr and I am having a CString variable csError
have the flowing C++ code: CString info, info2; info.Format(%2d, Value[i]); info2.Format(%4.1f, Value[j]); want to
I am trying to do a comparison of CString from ATL/MFC to a custom
Consider this code (using CString because it's familiar and easy to see when not
How do I convert from CString to const char* in my Unicode MFC application?
I'm trying to format a CString using the following code: const wchar_t * wch
I am trying to refer to a cstring mycustompath from a different class from
So I have this simple code snippet: CString str; .................. if ( str.IsEmpty() )
I have a piece of code that originally used CString. Since it is not
Ok, here is the small portion of code to demonstrate: CString txt = _T(Hello

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.