i have one doubt
how to change font weight ?Because i have two records in my table i need to change that particular records only i need to change "BOLD"
thanx
You can return this information as an additional column as part of your SQL query. Then in design mode, highlight the details row (or individual testboxes) and make the font weight an expression based on the column in you dataset. e.g.
SELECT type
, font_weight = CASE type WHEN 'special' THEN 'Bold' ELSE 'Normal' END
FROM some_table
Then the expression will read:
=Fields!font_weight.Value
You can apply this technique for most properties not just FontWeight.
No comments:
Post a Comment