Hi everyone, is there a code or anything to programatically set a textbox font to bold in a report?
Hi Nikeman77…
There is no such code to programatically set a textbox font to bold/italic etc in a REPORT…
You can change the Fon Bold property of the text box…
It can only be programmitically done in FORMs using the following code
<br>IF Type = Type::Heading THEN CurrForm.Name.UPDATEFONTBOLD(TRUE);<br> <br>Where name is the name of the textbox.<br> |
---|
Amol,
Thanks [:D]