Tagged Questions
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
726 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 ...
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
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 ...
2
votes
2answers
314 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
674 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
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
457 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
4answers
512 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
767 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
937 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
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
913 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
327 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
890 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
232 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
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 ...