Hi,
May i know that isn't possible for us to made a grid cell blinking?
Because we would like to made it blinking for get user attention.
Thank You.
Cybersecurity
DevOps Cloud (ADM)
IT Operations Cloud
If an answer to your question is correct, click on "Verify Answer" under the "More" button. The answer will now appear with a checkmark. Please be sure to always mark answers that resolve your issue as verified. Your fellow Community members will appreciate it!  Learn more
You could change the cell-color in a thread:
PERFORM THREAD BLINK-CELL. BLINK-CELL. PERFORM UNTIL 2 = 1 MODIFY GRID-1 X=3 Y=3 CELL-COLOR=48 CALL "C$SLEEP" USING 0.5 MODIFY GRID-1 X=3 Y=3 CELL-COLOR=513 CALL "C$SLEEP" USING 0.5 END-PERFORM.
Hi Remy,
Because we are not familiar with thread.
May i know that how to control this thread to stop the thread?
If we need to run some processing data function to refresh the grid data then only start this thread isn't possible?
Because we need the cell to blink when certain condition hit.
Thank You.
Hi Remy,
Thanks for the information.
May i know that do you have any idea how to made it blink without using thread?
Because what we try to achieve is not only blink for 1 record, it will need to read thru the whole grid and decide which to blink.
So we try to use thread, it seem like hang there due to having loop for read the data and loop for blink the cell.
Thank You.
May i know that do you have any idea how to made it blink without using thread?
Just use the same source I posted earlier but without calling it in a thread.