Search found 7 matches

by Roman2807
Wed Aug 25, 2010 8:52 pm
Forum: Support
Topic: SRichViewEdit AND Thread
Replies: 1
Views: 7122

SRichViewEdit AND Thread

In my project there are 8 forms, on the eighth SRichViewEdit. I start a stream. After stream performance hangs SRichViewEdit, and at form closing there is an error: "out of system resources" my code ...................................................................... procedure TForm8.Button9Click ...
by Roman2807
Tue Aug 17, 2010 3:59 pm
Forum: Support
Topic: Text from Edit to itemtext in table
Replies: 3
Views: 9717

Has solved a problem so: t := (SRichViewEdit1.RichViewEdit.RVData.Items.Objects[0] as TRVtableItemInfo); s := (sender as tedit).Text; t.EditCell(0, 0); t.FInplaceEditor.SetItemText((sender as tedit).Tag, s); But, SetItemText insert the text without last symbol, and at text removal (by pressing ...
by Roman2807
Tue Aug 17, 2010 1:41 pm
Forum: Support
Topic: Text from Edit to itemtext in table
Replies: 3
Views: 9717

Text from Edit to itemtext in table

My code: procedure TForm8.Edit2Change(Sender: TObject); var t : TRVtableitemInfo; s : trvtextiteminfo; i, i1 : integer; begin t := (SRichViewEdit1.RichViewEdit.RVData.Items.Objects[0] as TRVtableItemInfo); t.Cells[0, 0].SetItemText((sender as tedit).Tag, (sender as tedit).Text); t.EditCell(0, 0 ...
by Roman2807
Sun Aug 08, 2010 3:12 pm
Forum: Support
Topic: picture behind the text
Replies: 4
Views: 10300

thanks a lot!
by Roman2807
Sun Aug 08, 2010 2:30 pm
Forum: Support
Topic: picture behind the text
Replies: 4
Views: 10300

And how to make a transparent background of the table?
by Roman2807
Sun Aug 08, 2010 1:36 pm
Forum: Support
Topic: picture behind the text
Replies: 4
Views: 10300

picture behind the text

How to insert a picture that it was behind the text?
by Roman2807
Tue Aug 03, 2010 7:34 pm
Forum: Support
Topic: How to unite cells?
Replies: 1
Views: 6894

How to unite cells?

How to unite cells in the table?