Search found 29 matches

by kisshexuxia
Fri Sep 19, 2014 6:05 am
Forum: Support
Topic: Table in OCX
Replies: 7
Views: 18642

You need a source code to recompile the source code with RVNESTEDFORMS define. I test my ActiveX with newer version of Delphi, unfortunately it cannot be simply recompiled in XE. This is what I can see: - with this define, tab and arrow keys work correctly everywhere, including tables; I tested in ...
by kisshexuxia
Sat Aug 30, 2014 2:49 am
Forum: Support
Topic: Table in OCX
Replies: 7
Views: 18642

Please update to the new version. If you are already a registered user, please send me email (to richviewgmailcom) or a private message with information allowing me to find your order, and I'll send you downloading links. We are currently working on the ActiveX version of our component (working ...
by kisshexuxia
Tue Aug 26, 2014 8:43 am
Forum: Support
Topic: Table in OCX
Replies: 7
Views: 18642

Sergey Tkachenko wrote:1) Upgrade to TRichView version 15
2) Compile your project with the compiler define RVNESTEDFORMS

Does the problem still exist?


The version must 15?

my version now 14;
by kisshexuxia
Tue Aug 26, 2014 6:20 am
Forum: Support
Topic: Table in OCX
Replies: 7
Views: 18642

Table in OCX

When in ocx ,the keydown VK_LEFT, VK_RIGHT, VK_UP, VK_DOWN, event is not respond¡£ so I set a message with KeyEvent; function OCXKeyEvent(var Message: TMessage):boolean; var msg: TMsg; begin result := true; case Message.Msg of WM_GETDLGCODE: begin Message.Result := DLGC_WANTTAB or DLGC_WANTARROWS; ...
by kisshexuxia
Wed Aug 13, 2014 12:57 am
Forum: Support
Topic: How to FIXED CELL
Replies: 3
Views: 11948

It's possible only for the whole table, not only for some specified cell. Include rvtoIgnoreContentWidth in table.Options. Assign Cell.BestWidth to specify its width. THANKS I TRY TO SET BestWidth AND BestHeight .IT'S OK table := TRVTableItemInfo.CreateEx(2, 2, RichViewEdit1.RVData); table.Options ...
by kisshexuxia
Tue Aug 12, 2014 8:33 am
Forum: Support
Topic: How to FIXED CELL
Replies: 3
Views: 11948

How to FIXED CELL

How to protect and fixed cell size.
1.Input does not wrap.

1.I am so to solve the problem
ParaInfo.Options + [rvpaoNoWrap]

2.Input is greater than the cell length tips beyond the cell length range.
I don't know how to solve.
by kisshexuxia
Tue Dec 31, 2013 3:09 am
Forum: Support
Topic: how to cotinuous display and no word wrap
Replies: 8
Views: 21612

If it would be simple, it would be already implemented. I highly do not recommend to modify source code - you will have problems with updates. Justification is implemented in FinishScreenLine (in addition to applying line spacing and rearranging according to bidimode). But even if you calculate ...
by kisshexuxia
Mon Dec 30, 2013 3:00 am
Forum: Support
Topic: how to cotinuous display and no word wrap
Replies: 8
Views: 21612

Sergey Tkachenko wrote:I received your email.
As I understand, you want to justify Chinese text to the both sides by increasing increasing character spacing instead of increasing width of space characters. Sorry, it is not supported yet.
Thank you very much.
What can support?
Or How Can I Modify Soures £¿
by kisshexuxia
Fri Dec 27, 2013 3:23 am
Forum: Support
Topic: how to cotinuous display and no word wrap
Replies: 8
Views: 21612

Yes, "wrap anywhere" option is not recommended for real languages, it was designed for using in something like emulation of LED displays. .... I don't Want to display it as a single line. With Chinese When the Last Is punctuation , The Line is automatic branch. But the top row of the right margin ...
by kisshexuxia
Wed Dec 25, 2013 1:33 am
Forum: Support
Topic: how to cotinuous display and no word wrap
Replies: 8
Views: 21612

You can assign RVStyle.LineWrapMode=rvWrapAnywhere, but it affects all text. [Chinese] When I Set RVStyle.LineWrapMode=rvWrapAnywhere. Then Punctuation marks will be in the first place and On the right is not aligned with the space¡£ In Word will be aligned £¬There is no space, word spacing adj ...
by kisshexuxia
Thu Mar 07, 2013 1:04 am
Forum: Support
Topic: RVHeader ,RVFooter,Height,while space
Replies: 1
Views: 8354

RVHeader ,RVFooter,Height,while space

The error
Open ..\SCALRICH4.8\Demos\ActionTestTabs ActionTestUni.exe first it open readme.rvf
it'ok when i open readme2.rvf
The Second page header have a lot of while space
by kisshexuxia
Mon Sep 24, 2012 3:59 am
Forum: Support
Topic: SelectAll in Table is ERROR
Replies: 20
Views: 45912

It looks like some bug happened when you deleted actions from the datamodule: a reference to rvActionExport1 was not deleted from dfm file. I called "View as text" in the context menu for this datamodule, and removed this reference manually. Changed files were sent to you. Thanks,it's OK I remove ...
by kisshexuxia
Thu Sep 20, 2012 1:34 pm
Forum: Support
Topic: SelectAll in Table is ERROR
Replies: 20
Views: 45912

Sergey Tkachenko wrote:Did you solve the problems?
it still error
i copy ActionList 1 to TTest_OCX don't cut it,it's ok
cut it will be show class TsrvActionExport not found
by kisshexuxia
Thu Sep 20, 2012 1:22 am
Forum: Support
Topic: SelectAll in Table is ERROR
Replies: 20
Views: 45912

By default, all actions works with the focused editor. So all buttons and menus in inactive forms work with the editor on the active form. I assume that you have TRVAControlPanel on the form, with DefaultControl property assigned. In the new version of RichViewActions, the first created ...
by kisshexuxia
Thu Sep 20, 2012 1:06 am
Forum: Support
Topic: SelectAll in Table is ERROR
Replies: 20
Views: 45912

Can you send me the DEMO what have modified I try to modif the code 1. if not Assigned(srvActionsResource) then begin Application.CreateForm(TsrvActionsResource, srvActionsResource); end; 2.replace Change the code in TTest_OCX.ActiveFormCreate to: for i := 0 to ComponentCount-1 do begin if ...