I have string literals included in a template which is supposed to take both character and wide character. Of course, I need to prefix wide character string literals with L. To cover both charact...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_21957252.html
Zones:
C++Date Answered: 08/17/2006 Rating: 8.2 Views: 0
Hello!
I'm coding an application in VC++ 6. I have a WCHAR.
WCHAR test[MAX_PATH];
After some dll function calling I get this in test variable:
Hello World
I want to only World to be sh...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_22812655.html
this should be so easy ....
int func(char *a)
{
wchar_t aw[50];
// this does not work
wsprintf(aw,L"%s",a);
}
http://www.experts-exchange.com/Programming/Languages/CPP/Q_10201120.html
Zones:
C++Date Answered: 09/02/1999 Rating: 9.6 Views: 0
I tried writing a wstring to a text file, but I keep getting a text file that has single byte charactors instead of a wchar?
Can someone please provide example code.
http://www.experts-exchange.com/Programming/Languages/CPP/Q_20318167.html
Hello all,
This is the problem, my program creates a thread using CreateThread() that thread should enumerate the users and shares using the netbios service. UserEnum() and ShareEnum() are my 2 ...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_20583781.html
Zones:
C++Date Answered: 04/15/2003 Rating: 7.8 Views: 0
Greetings.
I am using Borland 5.02 and owl 2.0.
I need to transfer data between a vendor library which uses wchar_t and my own storage which is in a char[].
Can someone tell me how this is accom...
http://www.experts-exchange.com/Web_Development/Web_Languages-Standards/OWL/Q_20624780.htm...
Zones:
OWLDate Answered: 08/13/2003 Rating: 7.6 Views: 4
The following function takes a wide character string, and divides it up into individual words, (delimited by spaces, commas, etc.) and puts each word in a vector:
void function1(wchar_t* wqstr)
...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_21714244.html
Zones:
C++Date Answered: 01/29/2006 Rating: 9.8 Views: 0
I am not sure why CopyFile is failing. Below is code snippet. Can you help me debug? copyfile fnc returns Zero. permPath is Temp dir loaction on C:\ and I checked it is fine.
if ((hFind = FindFi...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_21822945.html
Zones:
C++Date Answered: 05/21/2006 Rating: 9.4 Views: 0
the title says it all.
I've tried to use ...
Column->Field->Text.WideChar
|------------------|
ANSISTRING
but I believe I'm not using it correctly.
need code, please.
http://www.experts-exchange.com/Programming/Languages/CPP/Q_10426279.html
Zones:
C++Date Answered: 06/10/2000 Rating: 9.2 Views: 26
I have a function that takes a couple wchar_t * as parameters. Unfortunetly I'm trying to pass the parameters as char * and am getting a compiler error. Is there a function that takes a char * as...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_20254921.html
Zones:
C++Date Answered: 01/14/2002 Rating: 9.2 Views: 8