Search found 39 matches

by Crowbar
Sun Nov 05, 2006 10:33 am
Forum: Support
Topic: CellBorderColor change after save (rtf) ...
Replies: 3
Views: 12640

Mean it, that the border color no more it can be changed (after load the rtf-File)?
by Crowbar
Fri Nov 03, 2006 9:51 pm
Forum: Support
Topic: CellBorderColor change after save (rtf) ...
Replies: 3
Views: 12640

CellBorderColor change after save (rtf) ...

Hi, I would like to change the CellBorderColor of a table in my RichViewEdit. This works. But ... I save the RichViewEdit into a file (rtf-Format) and load this file again. Now, I can change the CellBorderColor no more (but the CellBorderWidth can change I)! Here my code: ... Table:=TRVTableItemInfo...
by Crowbar
Thu Nov 02, 2006 11:06 am
Forum: Support
Topic: Cursor and Font in table setting...
Replies: 2
Views: 11093

Hi Sergey,
thank you for your informations and help!

It works fine! :D

Greetings
Crowbar
by Crowbar
Wed Nov 01, 2006 11:16 pm
Forum: Support
Topic: Cursor and Font in table setting...
Replies: 2
Views: 11093

Cursor and Font in table setting...

Hello, i have ask two: 1. I insert a new table in my RichViewEdit with following code: ... RichViewEdit.InsertItem('',Table); ... This works fine, but the cursor in my RichViewEdit is after the table. How do I get the cursor into the first cell of the table (Table.Cells[0,0]...)? 2. With the followi...
by Crowbar
Sun Oct 22, 2006 2:59 pm
Forum: Support
Topic: Next Line Problem
Replies: 8
Views: 21267

Thank you, for your help! :)

Crowbar
by Crowbar
Sun Oct 22, 2006 1:30 pm
Forum: Support
Topic: Next Line Problem
Replies: 8
Views: 21267

Ok, thanks for your help! One question to mailmerge-text3 demo. I would like to output my result in a TRichViewEdit with rtf format (I load a rtf file with my macros.) How I must change the code: ... Index := 0; ItemCount := 0; rvOutput.Clear; while Index<Persons.Count do begin Stream := TMemoryStre...
by Crowbar
Sun Oct 22, 2006 12:02 pm
Forum: Support
Topic: Next Line Problem
Replies: 8
Views: 21267

Hello, I found a solution: ... with RichViewEdit do begin Clear; LoadRTF('temp.rtf'); Format; SetFocus; while SearchText('<remind>',[rvseoDown]) do begin InsertText('Thank you for your order!'+#13#10+'With this goods delivery, your order is closed.',false); end; end; ... It works fine, but is it so ...
by Crowbar
Sun Oct 22, 2006 10:32 am
Forum: Support
Topic: Next Line Problem
Replies: 8
Views: 21267

Hello, I have in my RichViewEdit of deceased macroses. These macroses are replaced automatically with a text. This text can also have break characters. Examble, in the RichViewEdit is a macro: <remind> This macros seeks and replaces it with a text: $text:='Thank you for your order!'+#13#10+'With thi...
by Crowbar
Sat Oct 21, 2006 11:13 pm
Forum: Support
Topic: Next Line Problem
Replies: 8
Views: 21267

Next Line Problem

Hi, i has a string with following content: " 'Hello world1'#$D#$A'Hello world2' " The "#$D#$A" - code is for write "Hello world2" on the next line. Examble: Hello world1 Hello world2 But in the TRichViewEdit, it is shown so (in a line): Hello world1 Hello world2 I work ...