The tchar tag has no wiki summary.
0
votes
1answer
54 views
C++ _TCHAR* to std::string
I created a project in C++, and VS2010 created
int _tmain(int argc, _TCHAR* argv[])
{
string sInput;
string sOutput;
int iMode=0;
if (argc==3)
{
if (strcmp(argv[0], "-e")==0)
{
...
0
votes
3answers
159 views
C++ windows how to convert 'unsigned int' to 'TCHAR *'?
I am in new to C++ on windows. Can you please tell me how to convert unsigned int to TCHAR *?
Thanks in Advance
-1
votes
3answers
372 views
How to convert char* to TCHAR[ ]? [duplicate]
char* stheParameterFileName = argv[1]; //I'm passing the file name as a parameter.
TCHAR szName [512];
How can I convert char* to TCHAR []?
0
votes
1answer
99 views
Qt cannot convert 'const wchar_t*' to 'TCHAR*'
I transfer the project from visual studio to QT and when the project build - displayed errors. How to fix them without making significant changes in the code?.
cannot convert 'const wchar_t*' to ...
0
votes
1answer
144 views
Command-Line arguments not working (char, TCHAR) VS2010
I have following code:
int _tmain(int argc, char** argv) {
bool g_graphics = true;
palPhysics * pp = 0;
#ifndef PAL_STATIC
PF -> LoadPALfromDLL();
#endif
char a[] = "Bullet";
...
0
votes
2answers
69 views
Find the item in the MAP by TCHAR key-name
So, i have two textboxes (defined early) and two vectors:
std::vector<TCHAR*> v1;
std::vector<int> v2;
and map:
std::map <TCHAR*, int> m1;
std::map <TCHAR*, int>:: ...
0
votes
2answers
121 views
C++ TCHAR array to wstring not working in VS2010
I would like to convert a TCHAR array to a wstring.
TCHAR szFileName[MAX_PATH+1];
#ifdef _DEBUG
std::string str="m:\\compiled\\data.dat";
TCHAR *param=new TCHAR[str.size()+1];
...
0
votes
0answers
43 views
Detecting which version of vswprintf() exists in Visual C++
I have a project which uses _vscwprintf()/vswprintf() (via _vsctprintf()/_vstprintf()) to create formatted strings of arbitrary length in malloc()ed buffers.
When I started the project under Visual ...
1
vote
1answer
80 views
C++ to vb.net TCHAR array use conversion
I'm not a c++ programmer, I need to convert this c++ code to vb.net:
int iRC = 0;
TCHAR ptcTemp[20];
_itot_s(iRC, ptcTemp, sizeof(ptcTemp), 10);
I don't really understand, all I know is ...
-4
votes
2answers
223 views
0
votes
1answer
273 views
Issues Converting wstring to TCHAR [duplicate]
I'm fairly new to programming, and I'm trying to write a program where a user inputs a date, then that date is added to the file directory name, then that file directory is searched.
Here is what I'm ...
0
votes
0answers
120 views
int-array initialized from non-wide string when trying to make tchar
I'm trying to make a tchar array here like this:
TCHAR c_wText[100] = _T("string here");
But on compilation I'm getting an error message:
int-array initialized from non-wide string
Did I miss ...
0
votes
1answer
94 views
_T(“”) macro for non-MFC, Win32 projects
I'm creating a Win32 project, and I'm trying to use TCHAR everywhere. But since it's a non-MFC project, I don't have _T defined.
How do I get it in my project?
1
vote
1answer
40 views
Is there a way to use _T/TEXT “conditionally” inside a macro?
This question is specific to Visual C++ (you may assume Visual C++ 2005 and later).
I would like to create glue code for a program from unixoid systems (FreeBSD in particular) in order build and run ...
1
vote
2answers
120 views
How to disable Microsoft's decorations of tchar.h in Visual Studio?
By default Microsoft's Visual Studio is using <tchar.h> and defines main as int _tmain(int argc, _TCHAR* argv[]). This can be usefull but not always.
How to disable this in default new ...
2
votes
2answers
520 views
Comparing two TCHAR's with same value results false
I am trying to check my applications path, and if it is not a specified path, then move it. I feel like my code is solid, yet it does not work properly.
TCHAR pCheck[MAX_PATH];
TCHAR xPath[MAX_PATH];
...
1
vote
3answers
285 views
`cout << argv[0]` returning hex value? [duplicate]
Possible Duplicate:
Can not print out the argv[] values using std::cout in VC++
Code:
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
cout << argv[0] << endl;
...
2
votes
1answer
130 views
why TTN_NEEDTEXTW but not TTN_NEEDTEXTA?
This is an old problem that I've never figured out - wondered if someone here might happen to know the answer off of the top of your head...
In some parts of our software (MFC/Win32/MBCS) my code ...
0
votes
2answers
263 views
TCHAR and unresolved external symbol (LNK2019) error in C++ program?
My project has two cpp files and one header file. One cpp file contains the implementation of a single class and its declaration is in the header file. The other cpp file is which contains the int ...
1
vote
1answer
149 views
parsing tchars using _tcstok_s in winapi
With the following code I get an error "Unhandled exception at 0x59be5d2e (msvcr100d.dll) in simpleWindow.exe: 0xC0000005: Access violation writing location 0x00e750f8."
TCHAR *string1 = ...
0
votes
2answers
936 views
CString to TCHAR
Today after a long time I've seen this conversion:
void SomeFunction( LPCTSTR szText ) ...
CString str;
str.Format( "A Simple Sentence" );
SomeFunction( LPCTSTR( str ) );
It compiles OK. Any ...
0
votes
1answer
123 views
Using SHGetSpecialFolderPath+SubFolder with SHFileOperation
I want to delete the folder C:\Users\username\AppData\Roaming\appname when the users uninstall the application appname.
First, I use the following code to get the path ...
0
votes
1answer
185 views
Store numericals in TCHAR array into an INTEGER variable in VC++. (in UNICODE environment)
I had asked a question very much similar to this in the thread:
http://stackoverflow.com/questions/11259474/store-the-numericals-in-char-array-into-an-integer-variable-in-vc
W.R.T. the above thread, ...
1
vote
1answer
131 views
SHGetSpecialFolderPath to a System::String^
I'm trying to parse a SHGetSpecialFolderPath into a string, a System::String^ to be precise.
I'm now using this code:
TCHAR appDataPath;
SHGetSpecialFolderPath(0, appDataPath, CSIDL_APPDATA, false);
...
0
votes
2answers
235 views
how to properly output TCHAR from function?
This code:
#include <tchar.h>
TCHAR example_function() {
TCHAR example_tchar[10];
return example_tchar;
}
int main() { }
Gives error:
In function 'TCHAR example_function()':
error: ...
1
vote
1answer
203 views
C++ Indexing TCHAR string
I am doing some static analysis work on some old C++ code and my C++ is not the strongest. I have this piece of code:
void NIDP_clDPLogger::log(TCHAR *logString)
{
TCHAR temp_logString[1024] = ...
0
votes
2answers
548 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
945 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 ...
1
vote
3answers
279 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 ...
8
votes
4answers
802 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 ...
5
votes
5answers
828 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 ...
1
vote
3answers
10k views
how to convert TCHAR array to std::string?
can any one please tell me how to convert TCHAR array to std::string ? not to std::basic_string..
5
votes
3answers
10k 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 ...
3
votes
3answers
1k 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 ...
3
votes
2answers
2k 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
2answers
1k 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 ...
7
votes
2answers
1k views
Why is there a macro which defines _tmain?
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 smattering of ...
0
votes
3answers
1k 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
3k 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 ...
2
votes
2answers
3k 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
4answers
5k 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 ...
2
votes
3answers
1k 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 = ...
1
vote
2answers
5k 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 ...
2
votes
4answers
363 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
898 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( ...
0
votes
2answers
304 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 ...
2
votes
2answers
183 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
807 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 ...
1
vote
3answers
3k 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 ...
3
votes
2answers
906 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 ...