Search found 19 matches
- Fri Jan 17, 2020 7:14 pm
- Forum: Support
- Topic: Optimum use of RichView Action List Editor
- Replies: 5
- Views: 23101
Re: Optimum use of RichView Action List Editor
> Check the type of TField object representing this CLOB field. > If this is TWideMemoField, it must contain Unicode (UTF-16, two bytes per character) data. > If this is TMemoField, it must contain ANSI (one byte per character) text. All CLOB fields are accessed through TMemoField objects. > Unless ...
- Tue Jan 14, 2020 11:43 pm
- Forum: Support
- Topic: Optimum use of RichView Action List Editor
- Replies: 5
- Views: 23101
Re: Optimum use of RichView Action List Editor
Thanks for responding to my queries. Maybe I can remove some of the unknowns in my original post and code. 1: <RichEdit>.GetRTFText obtains the raw RTF as a string: function GetRTFText string; <RichEdit>.SetRTFText inserts raw RTF into the control: procedure SetRTFText (InsertText: string ...
- Mon Jan 13, 2020 11:40 pm
- Forum: Support
- Topic: Optimum use of RichView Action List Editor
- Replies: 5
- Views: 23101
Optimum use of RichView Action List Editor
Using V15.3.2 in Delphi XE6. For my application using RTF text saved in a database BLOB field, I copied the Action List Editor and changed its Save method to return the modified RTF to the caller. I also modified the editor's OnShow event to load the caller-supplied initial RTF into the editor. The ...
- Wed Mar 18, 2015 4:19 pm
- Forum: Support
- Topic: RichViewActions does not compile in Delphi XE6
- Replies: 2
- Views: 11792
- Wed Mar 18, 2015 10:40 am
- Forum: Support
- Topic: RichViewActions does not compile in Delphi XE6
- Replies: 2
- Views: 11792
RichViewActions does not compile in Delphi XE6
On 18 July last year I received from you an email containing the download links for RV14, the help and demo files and RichViewActions. When I try to install the latter in Delphi XE6 I get the following "file not found": RVFieldItems RVSideNote RVFloatingBox RVFloatingPos RVGrHandler For some reason ...
- Thu Sep 06, 2012 8:36 am
- Forum: Support
- Topic: Superfluous \par directives in RTF ????
- Replies: 3
- Views: 14092
Thanks, Sergey. > If the ending \par is not included, MS Word ignores attributes of the last paragraph So, if I could strip away the \par just before that last \pard all should work OK ?? The RichText is coming from a database field and so cannot be accessed by Word. The only external representation ...
- Wed Sep 05, 2012 10:11 pm
- Forum: Support
- Topic: Superfluous \par directives in RTF ????
- Replies: 3
- Views: 14092
Superfluous \par directives in RTF ????
Using TRichView V13.5 with Delphi XE2, all service packs. My program has the TRichView editor from one of your demo programs integrated and called by double-clicking on the field of a grid. When, in the editor, I type a single line of text: "just a test", and save it, the generated RTF code is as ...
- Sun Nov 27, 2011 5:41 pm
- Forum: Support
- Topic: Unnecessary compiling of TRichView modules.
- Replies: 5
- Views: 15430
- Fri Nov 25, 2011 9:53 pm
- Forum: Support
- Topic: Error creating form: Ancestor for TfrmRVBase not found
- Replies: 3
- Views: 13646
Yes, Sergey, you are right. It is happening because there are two warnings in module PageSetupRVForm, at lines 284 and 288: E1048: Unsafe typecast of 'TObject' to 'Integer' Code is as follows: 283 if GetXBoxItemIndex(_cmbSize)>=0 then begin 284 DevMode.dmPaperSize := Integer(GetXBoxObject(_cmbSize ...
- Fri Nov 25, 2011 7:22 pm
- Forum: Support
- Topic: Error creating form: Ancestor for TfrmRVBase not found
- Replies: 3
- Views: 13646
Error creating form: Ancestor for TfrmRVBase not found
When I compile my program I get the following error message:
Error creating form: Ancestor for TfrmRVBase not found.
in module RichViewActions
What is causing this ???
What is the solution ???
JF
Error creating form: Ancestor for TfrmRVBase not found.
in module RichViewActions
What is causing this ???
What is the solution ???
JF
- Sun Nov 13, 2011 7:01 pm
- Forum: Support
- Topic: RTF not formatted in RichView Editor
- Replies: 5
- Views: 20405
Final code to call Rich View Editor from RichText DblClick
This post is to feed back the final solution adopted, just in case it might be of use to others in the future. ; RTF text passed in to the editor as an AnsiString and the modified ; RTF text received out from the editor in the same way. ; Flag Text_Changed and string Text_In_RTF are fields of the ...
- Thu Nov 10, 2011 1:03 am
- Forum: Support
- Topic: Unnecessary compiling of TRichView modules.
- Replies: 5
- Views: 15430
- Wed Nov 09, 2011 10:20 pm
- Forum: Support
- Topic: RTF not formatted in RichView Editor
- Replies: 5
- Views: 20405
- Wed Nov 09, 2011 3:06 pm
- Forum: Support
- Topic: Unnecessary compiling of TRichView modules.
- Replies: 5
- Views: 15430
- Tue Nov 08, 2011 9:54 pm
- Forum: Support
- Topic: RTF not formatted in RichView Editor
- Replies: 5
- Views: 20405