Search found 24 matches
- Wed Nov 06, 2013 4:15 pm
- Forum: Support
- Topic: Table to Text Column Alignment
- Replies: 6
- Views: 17452
The text is inserted into the tables from a word processor as a proportional font. It looks good on printouts but I am needing to convert it to a pdf using a Rave report and the table is not rendering properly (it only showsWidth1Width0Width0, etc). It is not really a RichView problem at all but a ...
- Sun Nov 03, 2013 4:54 pm
- Forum: Support
- Topic: Table to Text Column Alignment
- Replies: 6
- Views: 17452
Thanks. I ended up using rv->GetItemText(rv->ItemCount-1) to get the contents of the cell and getting the contents.Length() to determine how many tabs to add. This method works only for fixed fonts like courier new, however. Contents.Length() just returns the number of characters in the cell and ...
- Tue Oct 29, 2013 3:03 pm
- Forum: Support
- Topic: Table to Text Column Alignment
- Replies: 6
- Views: 17452
- Mon Oct 28, 2013 9:54 pm
- Forum: Support
- Topic: Table to Text Column Alignment
- Replies: 6
- Views: 17452
Table to Text Column Alignment
Hello. I have implemented your example of converting all tables in a richviewedit to text in BCB2007. I have replaced your ; column delimiter with a tab using rv->AddTab instead of rv->AddNLATag in the example. It works great except that the columns do not align once converted to text. The table ...
- Mon Jun 03, 2013 6:52 pm
- Forum: Support
- Topic: RichViewEdit->SearchText Not finding word
- Replies: 6
- Views: 18708
- Sun May 26, 2013 3:34 pm
- Forum: Support
- Topic: RichViewEdit->SearchText Not finding word
- Replies: 6
- Views: 18708
- Thu May 23, 2013 8:51 pm
- Forum: Support
- Topic: RichViewEdit->SearchText Not finding word
- Replies: 6
- Views: 18708
- Thu May 23, 2013 8:26 pm
- Forum: Support
- Topic: RichViewEdit->SearchText Not finding word
- Replies: 6
- Views: 18708
RichViewEdit->SearchText Not finding word
Hello. I am getting mixed results when searching for the same word in a richviewedit control. My code does this: loop through a dataset and with each iteration clear and load a richviewedit from a blob field. richviewedit->format(); richviewedit->SetSelectionBounds(0,richviewedit(0,richviewedit ...
Version 12.0.4 with BCB2007. No project but here is a snippet. From design time RVPrint on a form. void AForm::PrintTheReport(char WhichHeader, String PrintCopyString) { RVPrint1->AssignSource(ReportRichViewEdit); FillHeader(WhichHeader, PrintCopyString, 1, 1); FillFooter(1, 1); RVPrint1->SetHeader ...
TRVPrint
I call the same function to fill a richview, assign it to a TRVPrint that was dropped on the form at design time, and print it. The first time I call this function, everything prints correct. When I call it again, the second printout is a little different. The problem goes away when I create the ...