Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Putting text on Win32 window application

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
I wish to know how to print text on the body of a Win32 window application. Please help me! I'm using Bloodshed Dev-C++ 4.0.
 
Use the TextOut GDI function.
You supply a handle to a device context, an x-position, a y-position, a character string, and a count of the number of characters in the string.

The text will be printed in the current font and style.

See the MSDN library at for details.

Chip H.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top