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 Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How can I show a word at a time?

Status
Not open for further replies.

jvff

Programmer
Apr 1, 2001
64
BR
How can I show a word at a time in an Edit? I tried this but it didn't work:

Code:
SetDlgItemText(IDC_EDIT, "Hello!");
Sleep(2000)
SetDlgItemText(IDC_EDIT, "Hello! You");
Sleep(2000)
SetDlgItemText(IDC_EDIT, "Hello! You are");
Sleep(2000)
SetDlgItemText(IDC_EDIT, "Hello! You are the");
Sleep(2000)
SetDlgItemText(IDC_EDIT, "Hello! You are the winner!");

Please help me. ThankQ ;-) Thank you,

JVFF (Janito Vaqueiro Ferreira Filho)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top