Search found 11 matches

by Gismo
Tue Feb 28, 2012 1:06 pm
Forum: Support
Topic: Openening a RVF file
Replies: 18
Views: 36279

file send
by Gismo
Mon Feb 27, 2012 3:03 pm
Forum: Support
Topic: Openening a RVF file
Replies: 18
Views: 36279

seems like i have found a selution by changing
RichViewEdit1.SaveTextToStream('', Stream, 80, False, False);
to
RichViewEdit1.SaveTextToStream('', Stream, 80, False, true);
i should read the parameters better before i use them :). thanks for your time helping a delphi starter :D
by Gismo
Mon Feb 27, 2012 2:14 pm
Forum: Support
Topic: Openening a RVF file
Replies: 18
Views: 36279

i tried it with the W after savetostream but it ended up with only passing me the first letter of the text (on a rvf file that doesnt have the error) also i found a couple of more files also having this problem they all have the same thing in commen and that is that there is a table or a picture or ...
by Gismo
Mon Feb 27, 2012 2:11 pm
Forum: Support
Topic: Openening a RVF file
Replies: 18
Views: 36279

i hope this is what you mean with reproduce in a sample project. I now made a form with 2 buttons 1 memo 1 richviewedit and a rvstyle. button1 loads the file button2 transfers the file to the memo causing a eaccessviolation error the code looks like this unit Unit1; interface uses Windows, Messages ...
by Gismo
Mon Feb 27, 2012 10:06 am
Forum: Support
Topic: Openening a RVF file
Replies: 18
Views: 36279

im using delphi 7
by Gismo
Mon Feb 27, 2012 9:51 am
Forum: Support
Topic: Openening a RVF file
Replies: 18
Views: 36279

I tried it but it didnt work out sadly. Though i managed to get all the code causing the eaccessviolation error in a single button click for testing. If needed i could give the file that might be causing the error. ill keep on tring to find the error. i posted the button code below. var i: integer ...
by Gismo
Fri Feb 24, 2012 5:00 pm
Forum: Support
Topic: Openening a RVF file
Replies: 18
Views: 36279

to bad i cant test it out now. but does this saves it in the stream without the images? since i need to remove those images in the end anyway :)
by Gismo
Fri Feb 24, 2012 8:05 am
Forum: Support
Topic: Openening a RVF file
Replies: 18
Views: 36279

try with table1 do begin {table with 6000 records} table1.open; while not table1.eof do {rvf file that matches a variable of the table} richviewedit1.Clear; richviewedit1.Style := rvstyle1; if FileExists(filename) then begin richviewedit1.LoadRVF(filename); end; richviewedit1.Format; Stream ...
by Gismo
Thu Feb 23, 2012 1:22 pm
Forum: Support
Topic: Openening a RVF file
Replies: 18
Views: 36279

The problem is ound in the RVF file seems to be a image. Does anyone know how i could remove the images automaticly?
by Gismo
Thu Feb 23, 2012 10:02 am
Forum: Support
Topic: Openening a RVF file
Replies: 18
Views: 36279

I still got a little problem since i want to use it in a while loop with over 6000 RVF files and place all the text of all the rvf's with additional text into the memo. But it seems te rewrite the memo and ends with a Eaccessviolation.
by Gismo
Tue Feb 21, 2012 2:48 pm
Forum: Support
Topic: Openening a RVF file
Replies: 18
Views: 36279

Openening a RVF file

Hello proffesionals, there is a bit of text inside a RVF file i want to have shown in Memo in delphi. Also in this file are some images. But these images dont want to have shown. Does anyone know if this is possible? And maybe have the code to do so? I got a RVF example file here and can send it to ...