migamiga
Programmer
- May 21, 2011
- 5
how i insert a flashing statik text in powerbuilder ???? please help
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
long ll_textcolor
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