Advertisement

1 - 10 of 35 containing alltags:("lptstr") (0 seconds)
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  
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..
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'...
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
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...
Zones: C++, Pocket PC OtherDate Answered: 09/07/2007 Grade: A Views: 0
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...
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?
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...
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(...
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.
Zones: CDate Answered: 06/26/2003 Grade: A Views: 58