Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Difference between _T(" ") & TEXT(" ") also Unicode vs M

Status
Not open for further replies.

jbs

Programmer
Feb 19, 2000
121
US
Two quick Unicode related questions:

#1) What is the difference, if any, between TEXT("a string") versus _T("a string")

#2) VS.NET 2003 VC71 configuration question: What is the difference between the configuration setting "Multi-byte character set" versus the "Unicode Char Set"

Thanks /Jerry
 
#define _T(x) __T(x)
#define _TEXT(x) __T(x)

they're identcal

[sub]I REALLY hope that helps.[/sub]
Will
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top