Click here to Skip to main content
15,891,633 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: strtok() argument Pin
Rinu_Raj7-Sep-06 1:32
Rinu_Raj7-Sep-06 1:32 
AnswerRe: strtok() argument Pin
Programm3r7-Sep-06 1:35
Programm3r7-Sep-06 1:35 
AnswerRe: strtok() argument Pin
toxcct7-Sep-06 2:19
toxcct7-Sep-06 2:19 
GeneralRe: strtok() argument Pin
Max++7-Sep-06 2:25
Max++7-Sep-06 2:25 
GeneralRe: strtok() argument Pin
toxcct7-Sep-06 2:32
toxcct7-Sep-06 2:32 
GeneralRe: strtok() argument Pin
Max++7-Sep-06 2:52
Max++7-Sep-06 2:52 
GeneralRe: strtok() argument Pin
Steve S7-Sep-06 2:59
Steve S7-Sep-06 2:59 
GeneralRe: strtok() argument Pin
prasad_som7-Sep-06 3:10
prasad_som7-Sep-06 3:10 
try this, if satisfies your need. Use sTemp to assign to array.
int nIndx=0;
CString sTemp;
while(nIndx != -1)
{
	int nTemp=s.Find(",",nIndx);
	if (nTemp==-1)
	{
		if (nIndx !=0)
		{
		  sTemp=s.Mid(nIndx,(s.GetLength()-nIndx));
		}
		break;
	}
	sTemp=s.Mid(nIndx,(nTemp-nIndx));
	nIndx=nTemp+1;
}



AnswerRe: strtok() argument Pin
David Crow7-Sep-06 3:12
David Crow7-Sep-06 3:12 
AnswerRe: strtok() argument Pin
Karthikeyan .g7-Sep-06 3:30
Karthikeyan .g7-Sep-06 3:30 
GeneralRe: strtok() argument Pin
toxcct7-Sep-06 3:41
toxcct7-Sep-06 3:41 
QuestionRe: strtok() argument Pin
David Crow7-Sep-06 5:34
David Crow7-Sep-06 5:34 
AnswerRe: strtok() argument Pin
Zac Howland7-Sep-06 5:07
Zac Howland7-Sep-06 5:07 
Questionexecute insert parametric queries of blob data type Pin
Mushtaque Nizamani7-Sep-06 1:22
Mushtaque Nizamani7-Sep-06 1:22 
QuestionRe: execute insert parametric queries of blob data type Pin
David Crow7-Sep-06 3:15
David Crow7-Sep-06 3:15 
AnswerRe: execute insert parametric queries of blob data type Pin
Mushtaque Nizamani7-Sep-06 5:58
Mushtaque Nizamani7-Sep-06 5:58 
AnswerRe: execute insert parametric queries of blob data type Pin
Mushtaque Nizamani7-Sep-06 6:02
Mushtaque Nizamani7-Sep-06 6:02 
GeneralRe: execute insert parametric queries of blob data type Pin
David Crow7-Sep-06 8:03
David Crow7-Sep-06 8:03 
QuestionRemoving Titlebar of the Frame Window Pin
Sarath C7-Sep-06 1:17
Sarath C7-Sep-06 1:17 
AnswerRe: Removing Titlebar of the Frame Window Pin
Rinu_Raj7-Sep-06 1:25
Rinu_Raj7-Sep-06 1:25 
GeneralRe: Removing Titlebar of the Frame Window Pin
Sarath C7-Sep-06 1:31
Sarath C7-Sep-06 1:31 
GeneralRe: Removing Titlebar of the Frame Window Pin
prasad_som7-Sep-06 1:42
prasad_som7-Sep-06 1:42 
GeneralRe: Removing Titlebar of the Frame Window Pin
Sarath C7-Sep-06 1:52
Sarath C7-Sep-06 1:52 
GeneralRe: Removing Titlebar of the Frame Window Pin
prasad_som7-Sep-06 1:55
prasad_som7-Sep-06 1:55 
GeneralRe: Removing Titlebar of the Frame Window Pin
Sarath C7-Sep-06 18:10
Sarath C7-Sep-06 18:10 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.