TechCake
6Mar2008,13:38   #11
asadullah.ansari's Avatar
Quote:
Originally Posted by shabbir
I could not get you which reply you are talking about.
I think tejus user talk about this thread.

http://www.go4expert.com/showthread.php?t=1176
Newbie Member
9Aug2008,17:23   #12
shahata's Avatar
A much more simple approach:

void _OutputDebugString(LPCTSTR lpOutputString, ... )
{
TCHAR OutMsg[MAX_LENGTH];

va_list argptr;
va_start(argptr, lpOutputString);

wvsprintf(OutMsg, lpOutputString, argptr);
OutputDebugString(OutMsg);

va_end(argptr);
}
hsm
Newbie Member
22Jul2010,16:41   #13
hsm's Avatar
The Download ZIP file is corrupt
Go4Expert Founder
22Jul2010,16:43   #14
shabbir's Avatar
Quote:
Originally Posted by hsm View Post
The Download ZIP file is corrupt
I downloaded once again and they worked fine for me