Options,
1. You can simply set the Text Back Ground Color for the field if you always 
want highlighted.
[cid:[email protected]]


  1.  Control for each record based on data.  Right click in the detail band of 
the report and create a “Before generate custom EEP”  control for each record.

  Property <Componet ID>  color ‘yellow’

This is the code from one of my reports to toggle printing a date for overdue 
items and a message for a missing field that needed to be updated when missing.
{========================================================================
Detail Band
========================================================================}
{ On Before Generate EEP
----------------------------------------}
IF pmdue < .vdue THEN
  PROPERTY id font italic
  PROPERTY pmdue VISIBLE true
ELSE
  PROPERTY id font regular
  PROPERTY pmdue VISIBLE false
ENDIF

IF vCAM_ID > 1 THEN
  PROPERTY cam_id visible false
ELSE
  PROPERTY cam_id visible true
ENDIF
RETURN


-Jim B

From: 'jim schmitt' via RBASE-L <[email protected]>
Sent: Monday, October 20, 2025 1:10 PM
To: rbase group <[email protected]>
Subject: [RBASE-L] - var label question

Good Day to all:

I have a report which prints postcard type bills in a 3-up format (sample 
attached).
Using version 11.0.2.20905.
I have a message line defined on the bills as a variable label, with a 
component id of 'CI_MSG'
Is it possible to produce a highlighted color, such as on Sample 2 (done 
manually), using the property commands?

I appreciate any assistance.

Regards,  Jim.
.
--
For group guidelines, visit 
http://www.rbase.com/support/usersgroup_guidelines.php
---
You received this message because you are subscribed to the Google Groups 
"RBASE-L" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to 
[email protected]<mailto:[email protected]>.
To view this discussion visit 
https://groups.google.com/d/msgid/rbase-l/55478422.4907327.1760983787690%40mail.yahoo.com<https://groups.google.com/d/msgid/rbase-l/55478422.4907327.1760983787690%40mail.yahoo.com?utm_medium=email&utm_source=footer>.

-- 
For group guidelines, visit 
http://www.rbase.com/support/usersgroup_guidelines.php
--- 
You received this message because you are subscribed to the Google Groups 
"RBASE-L" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion visit 
https://groups.google.com/d/msgid/rbase-l/DM6PR02MB5356E8442A88F8E18AB5F772B1F2A%40DM6PR02MB5356.namprd02.prod.outlook.com.

Reply via email to