Hi All
I am using 5 textboxes for taking input from user in MFC VC++ application.
i want after filling 5 textboxes application should wait for 5 Seconds. and after that all entries should be clear and ready for next user input.
i had written function to clear input.
using
m_ed1 = "";
m_ed2 = "";
.
.
m_ed5 = ""; // these are variables associated with
// textboxes
but for the next input round the application clears the input. but i am not able to edit it. and the application takes by default "0" as value for all 5 textboxes.
Could anyone please help me in this...
I just want the textboes should be editable in next round ....
also is there built in function to clear all textboxes ??
Thanks
Mukesh:)