hi all,
i've create a list of pointer array and i pass them into another dialogue, but how to show their value directly just having the pointer?
thanks~
Code:for(j=0;j<=10;j++){
str[j] = new CString(details);
Result result;
result.buffer[j] = str[j];
}
// below is result dialogue code
for(i=0;i<=j;i++){
resultlistbox.AddString(buffer[j]); //<------error
}
