Quote:
|
Originally Posted by Scorpions4ever
Use sprintf() or snprintf() to build your message string.
|
You might need to use wide-character variants, depending on your target OS. To make your code more portable between flavors of Win32, #include "tchar.h", use TCHAR instead of char, _TEXT("string") instead of "string", and use the string functions sensitive to TCHAR's type.
Clickie for more info.