I have the following variables:
LPTSTR a;
LPTSTR b;
int c;
LPTSTR d;
a = "value, 0, next1)"
how do I parse through this so I can
get:
b = "value"
c = 0
d = "next1"
thanks
http://www.experts-exchange.com/Programming/Languages/CPP/Q_10526501.html
Zones:
C++Date Answered: 06/26/2000 Grade: A Views: 0
hi, could someone please explain - LPTSTR.
why,
LPTSTR ptr;
and not...
LPTSTR *ptr
a full explanation on LPTSTR and how to
use it would be greatly apriciated.
thanks..
http://www.experts-exchange.com/Programming/Languages/C/Q_21153785.html
Zones:
CDate Answered: 10/02/2004 Grade: B Views: 76
I must admit the bazillion different types of string types have been a point of confusion for me over the years, and the problem I am having now is just another example.
First the background. I'...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_21317648.html
Zones:
C++Date Answered: 02/17/2005 Grade: A Views: 0
can any tell me in simple plain english how to convert std::string into LPTSTR or LPWSTR
http://www.experts-exchange.com/Programming/Languages/CPP/Q_21955630.html
Zones:
C++Date Answered: 08/15/2006 Grade: A Views: 0
I'm somewhat new to C++ (coming from Delphi) and I'm having a problem with loading and saving text strings....
I'm using Microsoft eMbedded Visual C++ 4.0 and I'm programming for Windows CE/Pock...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_22810691.html
Environment: Win NT 4, VC++ Version 5
How do I copy the contents of an RWCString into an
LPTSTR? Attempted the following:
RWCString prodCode;
LV_ITEM description;
strcpy(description.pszText,pr...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_10086809.html
Zones:
C++Date Answered: 10/07/1998 Grade: B Views: 4
Can I pass an LPTSTR or BSTR
to a function like this:
void func_name(VARIANT Value)
if so, How?
http://www.experts-exchange.com/Programming/Languages/CPP/Q_10572821.html
Zones:
C++Date Answered: 07/05/2000 Grade: B Views: 0
Hi
I have a CString variable which i need to use as
the label on a tab control. I cant find a way
of converting from CString to LPTSTR, which is required by
the tab control.
Any suggetion...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_20406408.html
Zones:
C++Date Answered: 11/24/2002 Grade: A Views: 109
This is what I have:
int x = _tcslen(NNew->Lst);
int y = x - 1;
int z = 1;
for (LPTSTR R = &NNew->Lst[y]; (y >= 0) && (z <= 10); R--, y--, z++)
if (! IsChNumeric(...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_20546579.html
Zones:
C++Date Answered: 03/19/2003 Grade: A Views: 22
Hello,
Could you please show me how to copy a LPTSTR and char * to a char array.
LPTSTR pName
char szName[100]
and
char *pName
char szName[100]
Thank you for your time.
http://www.experts-exchange.com/Programming/Languages/C/Q_20661628.html
Zones:
CDate Answered: 06/26/2003 Grade: A Views: 58