Search found 5 matches

by Dmitry Kholl
Wed Feb 14, 2007 8:10 am
Forum: Support
Topic: Inserting control into TRichViewEdit
Replies: 1
Views: 9151

Inserting control into TRichViewEdit

I need use TComponent.Tag property in inserted into editor controls. I set in Tag property my value. var cbx: TComboBox; //... cbx.Tag := -1; Then I paste control into editor. rvTemplateForm.InsertControl('',cbx, rvvaBaseline); And control tag has another value. Does trichview use the tag propery of ...
by Dmitry Kholl
Tue Nov 14, 2006 10:53 am
Forum: Support
Topic: FastReport 3 Wrapper ?
Replies: 6
Views: 19627

We also need FastReport wrapper.
Are there any promotions on this question?
by Dmitry Kholl
Mon Nov 06, 2006 10:10 am
Forum: Support
Topic: Disabling of tabulation
Replies: 1
Views: 8857

Disabling of tabulation

I've exclude value rvoWantTabs from EditorOptions.
But TRichvieweditor uses it anyway.

Is it a bug or some other properties conflict with it?
by Dmitry Kholl
Thu Oct 26, 2006 11:40 am
Forum: Support
Topic: Insert text at cursor position
Replies: 6
Views: 20129

Is there any way to set cursor position?
When I insert text at TRichViewEdit it isn't focused.

And after InsetText I call SetFocus for TRichViewEdit. The cursor is at the begining. But I need after the inserted text.
by Dmitry Kholl
Thu Oct 26, 2006 8:47 am
Forum: Support
Topic: Insert text at cursor position
Replies: 6
Views: 20129

Insert text at cursor position

I need to paste some text at cursor position and the cursor should be placed at the end of the placed text. Please explain how i can do it?