Hi,

I've read through some examples that show how to concatenate strings but can't seem to get any of them to work in a Win32 app.

What I would like to do is the following:

char* val1;
char* val2;

MessageBox(hDlg,val1 + " " + val2,"Info",MB_OK);

Now I know that wont work as it is but I just wanted to make it clear what I wanted to do..

I'm not using MFC.

Any help and examples would be greatly appreciated..

Dan