Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Flashing Text
Message
General information
Forum:
Visual FoxPro
Category:
Forms & Form designer
Title:
Miscellaneous
Thread ID:
00089398
Message ID:
00089496
Views:
29
The best way to have a flashing text or label is using the timer control. Using Timer control enables an object to be moved, or even visible true or false.

1. put label on a form
2. put timer on a form.
3. set property Interval (found in Others property window) to your desired milliseconds. 1000 milliseconds is 1 second.
4. put this code in Timer Event or method.
IF THISFORM.Label1.VISIBLE
THISFORM.Label1.VISIBLE = .F.
ELSE
THISFORM.Label1.VISIBLE = .T.
ENDIF

If anybody have the same suggestion, sorry to tell you bu I have no longer time to open all replies...
JESS S. BANAGA
Project Leader - SDD division
...shifting from VFP to C#.Net

CHARISMA simply means: "Be more concerned about making others feel good about themselves than you are in making them feel good about you."
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform