Quote Originally Posted by chrishowarth
Ok... the TextOut() function seems best only... I'm not sure what it means by 'DC'. It's rejected 'hwnd' as the name for my main window, so I'm not sure what to use?
DC and hWnd is two different things! DC is associated to window if you want to display text on hWnd you can do something like that:

Code:
  HDC hDC =::GetDC( hWnd );
  ::TextOut(hDC,,,,,,);
  ::ReleaseDC(hWnd,hDC);
Cheers