Search found 7 matches

by gary
Mon Mar 09, 2015 3:05 am
Forum: Examples, Demos
Topic: [How to] How to save OLE objects in RTF
Replies: 3
Views: 52551

Is there a same function for export ole to html?
by gary
Mon Mar 03, 2014 5:33 am
Forum: Examples, Demos
Topic: [Example] DeleteBlankLines, RemoveParagraphBreaks, etc.
Replies: 21
Views: 205596

A procedure is make these methods support apply to selection and support undo. Any suggestion is welcome. gRVE: TRichViewEdit RVEditor: TRichViewEdit function GetSelectedCells(ARVE: TRichViewEdit; ARowList, AColList: TList): TRVTableItemInfo; var ItemRichViewEdit: TCustomRichViewEdit; item: TCustomR...
by gary
Sun Mar 02, 2014 2:21 am
Forum: Examples, Demos
Topic: [Example] DeleteBlankLines, RemoveParagraphBreaks, etc.
Replies: 21
Views: 205596

A procedure to trim Leading And Trailing Spaces in paragraph. Any suggestion is welcome. procedure TrimLeadingAndTrailingSpaces(RVData: TCustomRVData); var i,r,c: Integer; s: string; table: TRVTableItemInfo; begin for i := 0 to RVData.ItemCount - 1 do begin if RVData.IsParaStart(i) then begin if RVD...
by gary
Fri Feb 28, 2014 5:54 am
Forum: Examples, Demos
Topic: [Example] DeleteBlankLines, RemoveParagraphBreaks, etc.
Replies: 21
Views: 205596

A small improve, Replace Paragraph Breaks with space. procedure RemoveParagraphBreaks(RVData: TCustomRVData); var i,r,c: Integer; table: TRVTableItemInfo; s: string; begin for i := 0 to RVData.ItemCount-1 do if (i>0) and RVData.IsFromNewLine(i) and not RVData.GetItem(i).GetBoolValue(rvbpFullWidth) a...
by gary
Fri Oct 18, 2013 9:38 am
Forum: Examples, Demos
Topic: [Component] Using Shockwave Flash ActiveX in RichView
Replies: 22
Views: 281763

Why this demo can not load *.flv?
*.swf is ok.
by gary
Thu Jun 09, 2011 8:25 am
Forum: Support
Topic: how can RichViewEdit document save as *.mht?
Replies: 3
Views: 15800

As far as I know, RichViewEdit can only save to html format.
by gary
Wed Aug 31, 2005 1:42 pm
Forum: Support
Topic: Help about paste html
Replies: 1
Views: 15292

Help about paste html

I found richviewaction can support rvhtmlimport when paste content form IE.
Now i don't want use richviewaction, in my own code, how can i judge Html content in clipboard?
Thanks! :roll: