Follow-up Q, if I may. What set of colors are available for this use in reports?
Is that RGB/specific value setting available? Thanks, Steve -----Original Message----- From: [email protected] [mailto:[EMAIL PROTECTED] On Behalf Of A. Razzak Memon Sent: Monday, June 23, 2008 4:28pm 16:28 To: RBASE-L Mailing List Subject: [RBASE-L] - Re: Which Approach to Conditionally & Dynamically"Create" Control on Report? At 05:06 PM 6/23/2008, Wills, Steve wrote: >I figure that I can locate the field-control, set its default >properties to make it "invisible" then, on the relatively rare >occasions when the determining value NOT LIKE '%001', change >those properties to display the previously hidden field. Then, >I can reset those properties back to their invisible defaults. Steve, That is the most eloquent technique in Report or Label Designer to achieve your objective. Example: -- Start here -- Before Generate Custom EEP for Detail and/or Appropriate Band IF vDeterminingValue NOT LIKE '%001' THEN PROPERTY HiddenControlCompID VALUE .vPreviousValue PROPERTY HiddenControlCompID VISIBLE 'TRUE' PROPERTY HiddenControlCompID FONT_COLOR 'GREEN' ELSE PROPERTY HiddenControlCompID VISIBLE 'FALSE' ENDIF RETURN -- End here Based on your specific circumstances, you may update the order of PROPERTY commands and actual variable names accordingly. Very Best R:egards, Razzak.

