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

display the actual output at runtime 1

Status
Not open for further replies.

leopardo

Technical User
May 14, 2005
18
AR
Hello!.
Here me again, forgive me. I work with D2 and W98SE.
PLease, I intend to display the values of certain changing parameters during the ejecution of the program, I writen for example: Form2.Edit2.Text:=('''actual value of the parameter'''), but it will only display the final value at the end. It's important to check out how the parameter is changing during calculation. Help!, I'm relatively new in object programming and Delphi. [pc3]
 
Code:
Form2.edit2.text := newstring;
ApplicationProcessMessages;

or, if assignments are very fast, you can:

Code:
Form2.edit2.text := newstring ;
MySleep(500);

where MySleep() if the function i told you in prior post.

Giovanni Caramia
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top