Apr 29, 2002 #1 Vallurupa Programmer Oct 17, 2001 38 US USHORT APIENTRY InitializeStimulus (hWnd) HWND hWnd; { Window Handle = "; hStimWnd = hWnd; Here i have to convert the hWnd to char and print that out to the file. How to convert Please help me
USHORT APIENTRY InitializeStimulus (hWnd) HWND hWnd; { Window Handle = "; hStimWnd = hWnd; Here i have to convert the hWnd to char and print that out to the file. How to convert Please help me
Apr 29, 2002 #2 Leibnitz Programmer Apr 6, 2001 393 CA Try this: char WindowHandle; WindowHandle = (char)hWnd; Upvote 0 Downvote