Search found 9411 matches

by Sergey Tkachenko
Thu Jan 24, 2008 4:57 pm
Forum: Support
Topic: Scrolling with middle mouse button - not working.
Replies: 10
Views: 26562

Wow, I didn't know about this unit. It will be supported by default in the next update.

A special processing is required for inplace editors (to scroll the root editor instead of them), I've made it.
by Sergey Tkachenko
Thu Jan 24, 2008 4:48 pm
Forum: Support
Topic: Tables and Controls
Replies: 4
Views: 12566

The correct code is: if RichViewEdit1.InsertControl('', c, rvvaAbsMiddle) then RichViewEdit1.TopLevelEditor.SetItemExtraIntProperty(RichViewEdit1.TopLevelEditor.FindControlItemNo(c), rvepResizable, 1) or if RichViewEdit1.InsertControl('', c, rvvaAbsMiddle) then RichViewEdit1.TopLevelEditor.SetItemEx...
by Sergey Tkachenko
Wed Jan 23, 2008 5:20 pm
Forum: ScaleRichView
Topic: bug in Actions Demo
Replies: 3
Views: 15913

It looks like the error we have recently fixed. It will be uploaded in the next update, this week.
by Sergey Tkachenko
Wed Jan 23, 2008 5:19 pm
Forum: ScaleRichView
Topic: re-order filters in Save As... ? (RVActions or SRV Demo???)
Replies: 2
Views: 14156

RichViewActions do not allow to reorder items in SaveAs dialog, they only allow to exclude some of them. Custom items are always after the standard items. But you can control the default item (which is selected when the dialog is shown). For SaveAs dialog, the default item corresponds to the documen...
by Sergey Tkachenko
Tue Jan 22, 2008 2:48 pm
Forum: Support
Topic: Tables and Controls
Replies: 4
Views: 12566

You should be able to select and resize them. There is only one problem: when the control is in the cell, TRichView cannot draw resize handles outside this cell. It may be a problem if CellPadding is small.
by Sergey Tkachenko
Tue Jan 22, 2008 2:46 pm
Forum: Support
Topic: TEdit Control and Font
Replies: 6
Views: 16242

For example, if the user selects large document fragment and applies font, this event occurs for each item in the selection. Which one you will use for TEdits?

It's possible to apply fonts to inserted controls, but it requires creating a special item type for them.
by Sergey Tkachenko
Tue Jan 22, 2008 12:53 pm
Forum: Support
Topic: TEdit Control and Font
Replies: 6
Views: 16242

This event occurs every time when some action needs a style with certain properties. This even may occurs when applying some change to the selection, or when inserting hyperlink. If this event is not processed, the default procedure provides this style (creates a new style or returns the existing st...
by Sergey Tkachenko
Mon Jan 21, 2008 6:18 pm
Forum: Support
Topic: Controls in TRichView and its height
Replies: 3
Views: 11075

You can change height of combobox if you set its style to one of ownerdraw styles. As far as I remember, you need to change its ItemHeight property. But this change does not affect height immediately, only next time when this combobox is loaded.
by Sergey Tkachenko
Mon Jan 21, 2008 5:19 pm
Forum: Support
Topic: Update for Borland Developer Studio 2006
Replies: 7
Views: 22052

Please send be (by private message or e-mail) details of your registration (for example, order number or e-mail address used in your order)
by Sergey Tkachenko
Mon Jan 21, 2008 5:16 pm
Forum: Support
Topic: Liker error RVSSCROLL.OBJ with codegear2007C++
Replies: 1
Views: 7097

Please send me your project file (*.cbproj, without other files) to [email protected]
by Sergey Tkachenko
Sun Jan 20, 2008 10:04 am
Forum: Support
Topic: Scrolling with middle mouse button - not working.
Replies: 10
Views: 26562

Smike, what is imouse?
TRichView uses standard window scrollbars, but I think it does not matter in this case.
by Sergey Tkachenko
Sun Jan 20, 2008 10:03 am
Forum: Support
Topic: Scrolling with middle mouse button - not working.
Replies: 10
Views: 26562

Marsianin , I believe this type of scrolling (pressing middle button and moving mouse) is implemented not by drivers but by applications. On my computer, only few applications implement this feature: - IE - OE (only in editor, not in lists) - MS Office - CodeGear RAD Studio. And in all these applic...
by Sergey Tkachenko
Sat Jan 19, 2008 3:27 pm
Forum: Support
Topic: RVStyleDrawStyleText draw function quesstion
Replies: 2
Views: 8766

If this is an Unicode text style, s must contain "raw Unicode" string (two characters in s must represent one Unicode character).
How do you get text in s?
by Sergey Tkachenko
Fri Jan 18, 2008 5:53 pm
Forum: ScaleRichView
Topic: Adding actions
Replies: 3
Views: 16126

Yes, you can place TAction and process OnUpdate and OnExecute. In new versions of RichViewActions, there is more convenient action - TrvActionEvent. You can add it as "standard" action, it is in "RVE Custom" group of actions. In this action, you use OnUpdate and OnExecute too, bu...
by Sergey Tkachenko
Fri Jan 18, 2008 5:45 pm
Forum: Support
Topic: Controls in TRichView and its height
Replies: 3
Views: 11075

TRichView does not change heights of inserted controls.
Please send me a project to reproduce the problem.