Search found 27 matches

by rafakwolf
Tue Jan 03, 2017 5:05 pm
Forum: Examples, Demos
Topic: [Demo] Exporting HTML containing embedded images
Replies: 7
Views: 53805

Hello...

Now is possible to import embedded images ?
by rafakwolf
Mon Nov 14, 2016 12:00 pm
Forum: Support
Topic: About Viewer for RVF for HTML
Replies: 3
Views: 14512

Hello... sorry for the delay to response

Another point is that i need to edit this documents too..

If i make two way conversions , i will lose some formatting?

Thanks
by rafakwolf
Wed Jun 01, 2016 5:11 pm
Forum: Support
Topic: Convert to HTML without a visual editor
Replies: 3
Views: 15785

Convert to HTML without a visual editor

It is possible convert RVF format to HTML without a visual component into a form ?

thanks
by rafakwolf
Mon May 23, 2016 12:05 pm
Forum: Support
Topic: About Viewer for RVF for HTML
Replies: 3
Views: 14512

About Viewer for RVF for HTML

The company where i work is migrating our Delphi app to the browser.

And of course our RVF documents are an issue.

Exists some plan to create a web viewer/editor for de RVF docs ?

Or a third party component for this ?

Or even ... some advice about that ?

Thanks alot.
by rafakwolf
Tue Dec 08, 2015 5:23 pm
Forum: Support
Topic: Get text/rtf in local variable
Replies: 4
Views: 17799

RTF Documentos

OK, thanks for your attention
by rafakwolf
Tue Dec 08, 2015 1:56 pm
Forum: Support
Topic: Get text/rtf in local variable
Replies: 4
Views: 17799

Get RTF text

Hello...

i'm trying to use this function, but the result is not as i need.

Into my RTF text the word "PARÓQUIA" is "PAR\u211 \'d3QUIA"

It is unicode characters ?

Can i get the RTF without them ?

Thanks!
by rafakwolf
Mon Mar 17, 2014 11:22 am
Forum: Support
Topic: List index out of bounds -> InsertText
Replies: 3
Views: 13921

Hello, it's complicated to send an example for you...but after alot debugging i found a "solution" for this issue... i do not konwn if this is correct, but you can tel me.. in CRVData function TCustomRVData.GetItem(ItemNo: Integer): TCustomRVItemInfo; begin //====================== if Item...
by rafakwolf
Fri Mar 14, 2014 5:00 pm
Forum: Support
Topic: List index out of bounds -> InsertText
Replies: 3
Views: 13921

List index out of bounds -> InsertText

Hello i'm trying to execute a Search and Replace this way: procedure GoToBeginTexto(RichView: TCustomRichView); var Item, Off: Integer; begin Item := 0; Off := RichView.GetOffsBeforeItem(Item); RichView.SetSelectionBounds(Item, Off, Item, Off); end; procedure proc_name... const TEMP_TEXT : string = ...
by rafakwolf
Fri Nov 04, 2011 1:20 pm
Forum: Support
Topic: Search and Replace problem
Replies: 2
Views: 12421

Re: Search and Replace problem

Hello.. i am trying to search and replace texts...but no success.. using this code : procedure SearchAndReplace(rve: TCustomRichViewEdit; old, new: String); begin with rve do begin SetSelectionBounds(0, GetOffsBeforeItem(0), 0, GetOffsBeforeItem(0)); while SearchText(old, [rvseoDown,rvseoWholeWord]...
by rafakwolf
Fri Nov 04, 2011 1:16 pm
Forum: Support
Topic: Search and Replace problem
Replies: 2
Views: 12421

Search and Replace problem

Hello.. i am trying to search and replace texts...but no success.. using this code : procedure SearchAndReplace(rve: TCustomRichViewEdit; old, new: String); begin with rve do begin SetSelectionBounds(0, GetOffsBeforeItem(0), 0, GetOffsBeforeItem(0)); while SearchText(old, [rvseoDown,rvseoWholeWord])...
by rafakwolf
Fri Nov 04, 2011 10:42 am
Forum: Support
Topic: Invalid floating point operation
Replies: 7
Views: 21525

for what i need the RichViewEd ?

can i just use the ppRichView ?

this way

Code: Select all

 rvs  := TRVStyle.Create(nil);

  RichView.RichView.AddTextNL(Texto,
    GetNewStyle(rvs,0,FontName,clBlack,Style,Size),
    GetNewPara(rvs,0,lAlign),0);
thanks.
by rafakwolf
Fri Nov 04, 2011 10:22 am
Forum: Support
Topic: Invalid floating point operation
Replies: 7
Views: 21525

Sergey Tkachenko wrote:Wait! You just need to add text to ppRichView?
You can simple add necessary styles to RichEd.RichView.Style and then call RichEd.AddTextNL, without all these difficulties.
exactly!

I will try...and post results later ...

thanks!
by rafakwolf
Thu Nov 03, 2011 7:59 pm
Forum: Support
Topic: Invalid floating point operation
Replies: 7
Views: 21525

i can´t...because this problem dont happen all the time

sometimes happen, sometimes don´t happen...

exists another way for do that ?

thanks.

sorry for my english! :)
by rafakwolf
Thu Nov 03, 2011 7:13 pm
Forum: Support
Topic: Invalid floating point operation
Replies: 7
Views: 21525

Invalid floating point operation

I get this error when i use following methods. function GetNewStyle(rvs: TRVStyle; BaseStyleNo: Integer; FontName: string; Color: TColor; Style: TFontStyles; Size: Integer): Integer; begin Result := rvs.TextStyles.FindStyleWithColor(BaseStyleNo, Color, clNone); Result := rvs.TextStyles.FindStyleWith...
by rafakwolf
Wed Oct 26, 2011 6:16 pm
Forum: Support
Topic: Tree with more levels
Replies: 3
Views: 12983

Very good...

but i need what rows are selectable...

exactly to a contact list...

because need double click to open the chat form.

i see the contact list example...good, but have just one level.

thanks for now.