Search found 104 matches

by wolf1860
Tue Jul 09, 2019 2:21 am
Forum: Support
Topic: User can not select Chinese text precisely by mouse
Replies: 1
Views: 12626

User can not select Chinese text precisely by mouse

Everything is right when select English text.When select Chinese text,the selection will auto expand to the start of the line.I think the cause is the word seperator is different.Here is the test Chinese text. 我曾经一度认为自己不是我爸的亲儿子,这个孩奴盛行的年代,哪个父亲舍得把亲儿子先送去特警学院摸爬滚打四年,出来后又动用关系分配到安全局行动队? “多年以后你会感谢我,让你有了一个独立...
by wolf1860
Thu Jun 13, 2019 1:10 am
Forum: Support
Topic: Problem about paste image
Replies: 5
Views: 20822

Re: Problem about paste image

And I noticed when TRichViewEdit open the rtf file which is saved by TDxRichEditControl,The TRichViewEdit convert the floating images to non floating images,May I do this action when paste floating image?
by wolf1860
Thu Jun 13, 2019 12:16 am
Forum: Support
Topic: Problem about paste image
Replies: 5
Views: 20822

Re: Problem about paste image

Thank u! I found the image which copied from web to tdxRicheditControl can be pasted to TRichViewEdit,the difference is floating and non-floating? Look,I Just want to paste the image from the clipboard,and I don't care its alignment options,Can u give me some suggestions? This is very very important...
by wolf1860
Mon Jun 10, 2019 11:49 pm
Forum: Support
Topic: Problem about paste image
Replies: 5
Views: 20822

Re: Problem about paste image

I have posted the test docx file to ur gmail.Thanks again:)
by wolf1860
Mon Jun 10, 2019 3:50 pm
Forum: Support
Topic: Export pdf---the Chinese characters were garbled
Replies: 4
Views: 20352

Re: Export pdf---the Chinese characters were garbled

Thanks,as u said,I changed the font-name to "microsoft YaHei",and I got the right file:)
by wolf1860
Fri Jun 07, 2019 2:37 am
Forum: Support
Topic: Problem about paste image
Replies: 5
Views: 20822

Problem about paste image

TRichViewEdit works with TDxRichEditControl(Devexpress vcl): TDxRichEditControl open an docx file,I copied an image to the clipboard which displayed in the TdxRichEditControl,and I can paste it to the word,the writing board(windows 10),but I can not paste it to the TRichViewEdit(Ctrl+V/Standard RVAc...
by wolf1860
Fri Jun 07, 2019 2:00 am
Forum: Support
Topic: Export pdf---the Chinese characters were garbled
Replies: 4
Views: 20352

Re: Export pdf---the Chinese characters were garbled

Microsoft YaHei is right,the others are displayed as rectangle,the font-name is Arial.
by wolf1860
Thu Jun 06, 2019 7:08 am
Forum: Support
Topic: Export pdf---the Chinese characters were garbled
Replies: 4
Views: 20352

Export pdf---the Chinese characters were garbled

The third-party export demo(SynPdf),the synPdf pack is the latest version as readme.txt,Everything is right except Chinese characters were garbled.Any ideas? Thanks!
by wolf1860
Wed Aug 22, 2018 2:32 pm
Forum: Support
Topic: How to set the alignment of TRVTableItemInfo in cell
Replies: 9
Views: 24242

Re: How to set the alignment of TRVTableItemInfo in cell

It does not wort yet! table := TRVTableItemInfo.CreateEx(3, 2, richView1.RVData); with table do begin BorderWidth := 1; CellBorderWidth := 1; end; table.Cells[0, 0].BestWidth := -80; table.Cells[0, 1].BestWidth := -20; table.Cells[0, 0].BestHeight := 38; table.Cells[0, 0].VAlign := TRVCellVAlign.rvc...
by wolf1860
Tue Aug 21, 2018 11:26 pm
Forum: Support
Topic: How to set the alignment of TRVTableItemInfo in cell
Replies: 9
Views: 24242

Re: How to set the alignment of TRVTableItemInfo in cell

I want tb align the cell's right side
by wolf1860
Tue Aug 21, 2018 4:02 pm
Forum: Support
Topic: How to set the alignment of TRVTableItemInfo in cell
Replies: 9
Views: 24242

Re: How to set the alignment of TRVTableItemInfo in cell

The code does not work below. What have I missed? table.Cells[0,0].Clear; table.Cells[0,0].AddNL('',0,2); richView1.AddItem('mytest1', table); tb:=TRVTableItemInfo.CreateEx(2,2,table.Cells[0,0]); tb.BestWidth:=60; tb.BorderColor:=clBlack; tb.BorderWidth:=1; table.Cells[0,0].AddItem('mytest2',tb); Ri...
by wolf1860
Tue Aug 21, 2018 3:51 pm
Forum: Support
Topic: How to delete a TRVTableItemInfo from TRichView?
Replies: 4
Views: 14842

Re: How to delete a TRVTableItemInfo from TRichView?

I insert some controls to the cells, and deleteItems does not work. What's wrong with the code below?

var
table: TRVTableItemInfo;
ItemNo: Integer;
begin
table := FindTable(richView1.RVData, 'mytest1');
ItemNo := table.GetMyItemNo;
richView1.DeleteItems(ItemNo,1);
end;
by wolf1860
Tue Aug 21, 2018 3:08 pm
Forum: Support
Topic: How to set the alignment of TRVTableItemInfo in cell
Replies: 9
Views: 24242

Re: How to set the alignment of TRVTableItemInfo in cell

How? The cell is empty before I insert a TRVTableItemInfo.