Current_Row_White_On_Black [message #336524] |
Mon, 28 July 2008 00:53  |
alammas
Messages: 46 Registered: July 2008
|
Member |
|
|
HI,
I Try to make highlighted row by using this code:
DECLARE
SEARCH_BLK BLOCK;
BEGIN
SEARCH_BLK:=FIND_BLOCK('ACCTYPEVW');
SET_BLOCK_PROPERTY(BLK,Current_Row_White_On_Black,property_TRUE);
END;
But it not work?
Can some one help me!
|
|
|
|
Re: Current_Row_White_On_Black [message #336626 is a reply to message #336524] |
Mon, 28 July 2008 07:41  |
dillango
Messages: 145 Registered: January 2008
|
Senior Member |
|
|
As Littlefoot said, use set_item_instance_property for each item.
Create two visual attribute and create the following code in
Post-text-item and when-new-item-instance trigger
set_item_instance_property(:system.cursor_item, current_record, visual_attribute, 'Visual attribute name');
|
|
|