Germán S. Arduino <
[hidden email]> wrote in message
news:ao1qrp$ikgk3$
[hidden email]...
> Hello:
>
> I'm trying to make an app in Dolphin, and need something like the Timer
> Control of VB, how I can solve this in Dolphin.
It has been some time since I have used the Timer control in VB, so my
memory of it may not be accurate. If I recall correctly you set an interval
and it runs some code at that interval.
In Smalltalk you could do something similar using Delay.
[(Delay forSeconds: 5) wait.
MessageBox notify: 'Done!'] fork.
1000 timesRepeat: [Transcript nextPutAll: '.'; flush].
This will fork a process that waits 5 seconds and then will display the
message box. While that process is waiting the code bellow will continue to
run and print a bunch of periods in the Transcript window. I think this
concept will help you accomplish what you are looking to do.
Good luck,
Chris