Re: I can't move the shape every minute


[ Related Articles and Replies ] [ DelphiLand FAQ ] [ Delphi Tutorials ]

Posted by Daryl Nickerson on January 05, 2002 at 02:39:29:

In Reply to: I can't move the shape every minute posted by HNhar141 on October 23, 2001 at 09:45:22:

: I want to move the shape control after 1 minutes. What should I do?

Use a TTimer Control. Add the code to move your control to the OnTimer event handler of the TTimer. Set Interval property to 60000, which is approximately one minute. Set Enabled to true to run it and false to stop it.

Hope this helps.
- Daryl


Related Articles and Replies


[ Related Articles and Replies ] [ DelphiLand FAQ ] [ Delphi Tutorials ]