Search found 9 matches
- Fri Dec 16, 2011 9:17 am
- Forum: Announcements
- Topic: Wrapper v1.13.1 for ReportBuilder 9-14
- Replies: 3
- Views: 27924
- Wed Apr 18, 2007 7:57 am
- Forum: Support
- Topic: Change style to part of text
- Replies: 6
- Views: 21818
- Tue Apr 17, 2007 12:03 pm
- Forum: Support
- Topic: Change style to part of text
- Replies: 6
- Views: 21818
- Tue Apr 17, 2007 9:32 am
- Forum: Support
- Topic: Change style to part of text
- Replies: 6
- Views: 21818
- Tue Apr 17, 2007 7:10 am
- Forum: Support
- Topic: Change style to part of text
- Replies: 6
- Views: 21818
Change style to part of text
I insert into table cell a texto:
I need insert "cargo" variable in other style (Bold). How I do it?
Code: Select all
table.Cells[0,0].AddNL( 'aaaaaaaaaaaaaaaaaaaaa '+cargo+' bbbbbbbbbbbbbbbb',7,3);
- Tue Nov 28, 2006 9:19 am
- Forum: Support
- Topic: Update for registerd users?
- Replies: 19
- Views: 68702
- Tue Jul 18, 2006 9:00 am
- Forum: Support
- Topic: How I can add TextStyles dynamically?
- Replies: 4
- Views: 16749
- Tue Jul 18, 2006 7:49 am
- Forum: Support
- Topic: How I can add TextStyles dynamically?
- Replies: 4
- Views: 16749
- Mon Jul 17, 2006 10:50 am
- Forum: Support
- Topic: How I can add TextStyles dynamically?
- Replies: 4
- Views: 16749
How I can add TextStyles dynamically?
I am constructing Dynamically a calendar with a table in RIchviewedit. The background an text color of every day is defined in a database and apply them: for d:=1 to topday do begin table1.Cells[x,d].Clear; rvs.TextStyles[1].Color:=Query.fieldbyName('CALENDAR_TEXT').asinteger; table1.Cells[x,d ...