how i insert a flashing statik text in powerbuilder ???? please help
how i insert a flashing statik text in powerbuilder ???? please help
(OP)
how i insert a flashing statik text in powerbuilder ???? please help
INTELLIGENT WORK FORUMS
FOR COMPUTER PROFESSIONALS Come Join Us!Are you a
Computer / IT professional? Join Tek-Tips Forums!
*Tek-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail. Posting GuidelinesJobs |
how i insert a flashing statik text in powerbuilder ???? please help
|
Join your peers on the Internet's largest technical computer professional community.
It's easy to join and it's free.
Here's Why Members Love Tek-Tips Forums:
Register now while it's still free!
Already a member? Close this window and log in.
RE: how i insert a flashing statik text in powerbuilder ???? please help
CODE
ll_textcolor = statictext.TextColor
CHOOSE CASE ll_textcolor
CASE RGB(0,0,0)
statictext.textcolor = RGB(255,255,255)
CASE RGB(255,255,255)
statictext.textcolor = RGB(0,0,0)
END CHOOSE
Then start the timer whenever you want to have the thing blink
Use TIMER(.25) for a quarter second interval or something similar
TIMER(0) turns it off.
Matt
"Nature forges everything on the anvil of time"
www.anvil-of-time.com