Page 1 of 1
Problem with RichViewActions
Posted: Sun Mar 19, 2006 6:31 am
by lukas2k6
I have 2 TRichView in a 1 Form, but RichViewActions only run in a one TRichView (All actions).
How, change scope to active TRichView?
Thanks.
Posted: Sun Mar 19, 2006 3:02 pm
by Sergey Tkachenko
Probably, you assigned one of this RichViewEdits to RVAControlPanel.DefaultControl
Problem with RichViewActions
Posted: Sun Mar 19, 2006 3:37 pm
by lukas2k6
I have one (First Create) TRichViewEdit,RichViewActions run.
But in a second (Second Create) TRichViewEdit RichViewActions don't run.
How make to change the RichViewActions scope to second TRichViewEdit or
to first TRichViewEdit in anytime.
Thanks
Posted: Mon Mar 20, 2006 10:27 am
by Sergey Tkachenko
Place TRVAControlPanel component on form.
Assign the first RichViewEdit to RVAControlPanel1.DefaultControl.
When you want to work with the second editor, assign it to RVAControlPanel1.DefaultControl, and so on.
For example, you can do this assignment in OnEnter event of the editors.
Ok
Posted: Mon Mar 20, 2006 7:55 pm
by lukas2k6
All Ok. thank's