P
Paul
I use underlined labels in my forms with code in the On Click event so users
can execute commands by clicking on these labels. I do this to save space
and simplify the visual display, similar to the hyperlinks used to launch
commands in Internet Browsers.
In order to provide visual feedback that the button has been clicked, I've
added a function that momentarily changes the color of the label text, makes
it bold, and then restores the font appearance to normal after a 1 second
delay. I'm using a Do loop to create the delay, but I'm wondering if that's
the best way to do it.
The loop goes through 4 million iterations, and so I'm wondering if this is
the most efficient way to do this. Is this something the Jet engine can do
without breaking a sweat, or am I making it go through unnecessary paces
while there is a better way to create a delay?
Thanks in advance,
Paul
can execute commands by clicking on these labels. I do this to save space
and simplify the visual display, similar to the hyperlinks used to launch
commands in Internet Browsers.
In order to provide visual feedback that the button has been clicked, I've
added a function that momentarily changes the color of the label text, makes
it bold, and then restores the font appearance to normal after a 1 second
delay. I'm using a Do loop to create the delay, but I'm wondering if that's
the best way to do it.
The loop goes through 4 million iterations, and so I'm wondering if this is
the most efficient way to do this. Is this something the Jet engine can do
without breaking a sweat, or am I making it go through unnecessary paces
while there is a better way to create a delay?
Thanks in advance,
Paul