Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
4answers
303 views

Concatenating a stack string with a heap string gives odd results

I am sure the following has a rational explanation but I am nevertheless a bit baffled. The issue is with a function which creates a _TCHAR[CONSTANT], a _TCHAR*, concatenates them and returns the ...
8
votes
7answers
20k views

What is the simplest way to convert char[] to/from tchar[] in C/C++(ms)?

This seems like a pretty softball question, but I always have a hard time looking up this function because there seem there are so many variations regarding the referencing of char and tchar.
6
votes
2answers
727 views

newbie C++ concept question: _tmain why is there a macro to define this?

I am new to C++ coding, coming from Java and C# background. I'm puzzled by the proliferation of #define terms starting with the most basic: #define _tmain wmain When I first learned a ...
6
votes
3answers
524 views

How to deal with Unicode strings in C/C++ in a cross-platform friendly way?

On platforms different than Windows you could easily use char * strings and treat them as UTF-8. The problem is that on Windows you are required to accept and send messages using wchar* strings (W). ...
4
votes
4answers
217 views

should I eliminate TCHAR from Windows code?

I am revising some very old (10 years) C code. The code compiles on Unix/Mac with GCC and cross-compiles for Windows with MinGW. Currently there are TCHAR strings throughout. I'd like to get rid of ...
4
votes
4answers
1k views

How do I convert a “pointer to const TCHAR” to a “std::string”?

I have a class which returns a typed pointer to a "const TCHAR". I need to convert it to a std::string but I have not found a way to make this happen. Can anyone provide some insight on how to ...
4
votes
2answers
3k views

strcmp or _tcscmp in UNICODE

For comparing strings in UNICODE versions is it advisable to use strcmp or _tcscmp? Thanks in advance
4
votes
4answers
8k views

How do I convert from _TCHAR * to char * when using C++ variable-length args?

We need to pass a format _TCHAR * string, and a number of char * strings into a function with variable-length args: inline void FooBar(const _TCHAR *szFmt, const char *cArgs, ...) { //... } So ...
4
votes
2answers
4k views

How to assign a value to a TCHAR array

I have a TCHAR array in my C++ code which I want to assign static strings to it. I set an initial string to it via TCHAR myVariable[260] = TEXT("initial value"); Everything works fine on this. ...
4
votes
2answers
7k views

tchar.h on linux

I am trying to write cross platform i18n C++ code. Since most linux system prefer to use UTF-8 as the character encoding, I thought that I should use string on linux and wstring on Windows. Is tchar.h ...
3
votes
2answers
3k views

convert tchar array to char array

how to convert to tchar[] to char[]..
2
votes
2answers
316 views

How to open a file using _TCHAR* as a file name? c/c++

My main has the following signature: int _tmain(int argc, _TCHAR* argv[]) I would like to preform the following: FILE *inputFilePtr; inputFilePtr = fopen(argv[2], "_r"); But there is a type ...
2
votes
3answers
675 views

C++ tstring compare

I have this variable dirpath2 where I store the deepest directory name of a path: typedef std::basic_string<TCHAR> tstring; tstring dirPath = destPath; tstring dirpath2 = ...
2
votes
4answers
206 views

Sending TCHAR buffer with send(sock, wszBuffer, …)?

I have a wide-character XML message that I need to send over a Win32 socket in C++. TCHAR wszBuffer[1024]; Should I sprintf(szSendBuffer, "%S", wszBuffer) the wide character buffer to a char array ...
2
votes
2answers
363 views

win32 c++ fstream wide argument

See link for what I'm talking about. I want to use point 1 in the link and #define tfopen _wfopen #define _T(s) L##s to do exactly what the link says is possible: std::ifstream file( ...
2
votes
2answers
139 views

proper style for interfacing with legacy TCHAR code

I'm modifying someone else's code which uses TCHAR extensively. Is it better form to just use std::wstring in my code? wstring should be equivalent to TString on widechar platforms so I don't see an ...
2
votes
2answers
458 views

tchar safe functions — count parameter for UTF-8 constants

I'm porting a library from char to TCHAR. the count parameter of this fragment, according to MSDN, is the number of multibyte characters, not the number of bytes. so, did I get this right? My project ...
2
votes
1answer
324 views

Differentiate between TCHAR and _TCHAR

What are the various differences between the two symbols TCHAR and _TCHAR type defined in the Windows header tchar.h? Explain with examples. Briefly describe scenarios where you would use TCHAR as ...
2
votes
4answers
513 views

User defined conversion operator as argument for printf

I have a class that defined a user defined operator for a TCHAR*, like so CMyClass::operator const TCHAR*() const { // returns text as const TCHAR* } I want to be able to do something like ...
2
votes
5answers
2k views

How to convert std::wstring to a TCHAR*

std::wstring.c_str() returns a wchar_t*. How do I get from wchar_t* to TCHAR*, or from std::wstring to TCHAR* Thanks
2
votes
3answers
186 views

Handling TCHARs in header files for libraries with different character sets

I have a project that uses two third party libraries, both of which make use of TCHARs in their header files. Unfortunately one library is complied as multi-byte (call it library a), and the other is ...
1
vote
2answers
772 views

Converting TCHAR to string in C++

I'm trying to convert a TCHAR to a string as in: std::string mypath; TCHAR path[MAX_PATH]; GetModuleFileName( NULL, path, MAX_PATH ); I need to set mypath to that of path. I did a simple loop and ...
1
vote
2answers
938 views

tchar.h not found on cygwin

I'm running the latest cygwin on windows 7 (32-bit), and trying to build an open-source project, RtAudio (it doesn't currently build on this platform). One of the problems I've worked around is an ...
1
vote
2answers
2k views

C++ TCHAR[] to string

I have this method which receives a path through a TCHAR szFileName[] variable, which contains something like C:\app\...\Failed\ I'd like to sort through it so I can verify if the name of the last ...
1
vote
3answers
1k views

Windows C++: LPCTSTR vs const TCHAR

In my application i'm declaring a string variable near the top of my code to define the name of my window class which I use in my calls to RegisterClassEx, CreateWindowEx etc.. Now, I know that an ...
1
vote
2answers
329 views

Flexible string handling in Visual Studio 2008 C++

I'm slowly starting to get the hang of the _T stuff in Visual Studio 2008 c++, but a few things still elude me. I can see the benefit of the flexibility, but if I can't get the basics soon, I think ...
0
votes
2answers
29 views

Why is PCTSTR not defined but LPCTSTR defined?

I have been assigned to update an old code written in MSVC++ 6. I have been getting unknown definition for PCTSTR but it was not defined even if I included the tchar.h. In my previous experience I ...
0
votes
1answer
188 views

Converting tchar[] to LPCWSTR

I am using FindFirstFile to traverse through a directory to search a dll. When I get the dll, I use the WIN32_FIND_DATA structure's cfilename to get the name of that dll. Now, I want to pass the dll ...
0
votes
3answers
113 views

Why do my Win32 API calls require the 'A' suffix and should I rectify that?

To execute a command from the Win shell I needed ShellExecuteA(NULL, "open", "http://stackoverflow.com", NULL, NULL, SW_SHOWNORMAL); and now I am working through Forgers Win32 Tutorial I am finding ...
0
votes
3answers
918 views

how to convert TCHAR array to std::string?

can any one please tell me how to convert how to convert TCHAR array to std::string ? not to std::basic_string..
0
votes
2answers
177 views

Is there a format specifier that always means char string with _tprintf?

When you build an app on Windows using TCHAR support %s in _tprintf() means char * string for Ansi builds and wchar_t * for Unicode builds while %S means the reverse. But are there any format ...
0
votes
2answers
328 views

Problem with tstring typedef

I am having a problem with trying to typedef myself a nice handy tstring (see below) #ifndef _NISAMPLECLIENT_H_ #define _NISAMPLECLIENT_H_ #include <windows.h> #include <stdlib.h> using ...
0
votes
3answers
337 views

How do I convert from std::wstring _TCHAR []?

I'm using a library and sends me std::wstring from one of its functions, and another library that requires _TCHAR [] to be sent to it. How can I convert it?
0
votes
2answers
893 views

error C2446: == : no conversion from const char * to TCHAR *

I have a TCHAR define below: TCHAR szProcessName[MAX_PATH] = TEXT("<unknown>"); and I want to comapare as below: if(szProcessName == "NDSClient.exe") { } But then I am getting the ...
0
votes
4answers
1k views

How can I substring a TCHAR

I have a TCHAR and value as below: TCHAR szDestPathRoot[MAX_PATH]="String This"; Now I want the 1st three character from TCHAR , like below: szDestPathRoot.substring(0,2); How can I do ...
0
votes
2answers
193 views

Array stores name retrieved from GetVolumeInformation weirdly in Visual C++?

I would like to use the GetVolumeInformation call to retrieve the name of a removable device. I can retrieve the name just fine and store into a TCHAR array variable szVolNameBuff. Here is my code for ...
0
votes
1answer
234 views

Why is there garbage in my TCHAR, even after ZeroMemory()?

I have inherited the following line of code: TCHAR temp[300]; GetModuleFileName(NULL, temp, 300); However, this fails as the first 3 bytes are filled with garbage values (always the same ones ...
0
votes
1answer
2k views

Convert char to TCHAR* argv[]

How can I input text into TCHAR* argv[]? OR: How can I convert from char to TCHAR* argv[]? char randcount[] = "Hello world"; TCHAR* argv[]; argv = convert(randcount);
0
votes
5answers
2k views

TCHAR[], LPWSTR, LPTSTR and GetWindow Text function

So the GetWindowText is declared on MSDN as follows: int GetWindowText( HWND hWnd, LPTSTR lpString, int nMaxCount ); However for the code to work we have to declare the second ...
0
votes
1answer
858 views

How am I using CA2W incorrectly?

Please could someone explain why this does not work? char *test = "test"; _TCHAR *szTest = CA2W(test); And please tell me what I should be doing instead. Instead of giving me equal text, it's ...