Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

line flashing in char

Status
Not open for further replies.

Peterw9

Technical User
Dec 11, 2001
16
GB
Using character version 9 how can we make a line flash in a display - we are using reflections for Unix?

Any help would be appreciated
 
DEFINE VARIABLE hilite AS CHARACTER.
hilite = "messages".

/* Use standard messages attribute to highlight on-hand less than 50 */
FOR EACH pt_mstr:
DISPLAY pt_part pt_status WITH ATTR-SPACE.
IF pt_status = "A" THEN DO:
COLOR DISPLAY VALUE(hilite) pt_status.
END.
END.
 
ATTR-SPACE is deprecated and is supported for backwards compatibility only.

Cheers, Mike.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top