Search found 119 matches

by martindholmes
Wed Jun 20, 2007 2:35 am
Forum: Support
Topic: Cant install RVXML after installing TRichView reg-key
Replies: 9
Views: 23556

Hi Sergey, I definitely didn't save the file; I even tried a completely fresh download. Having changed all the references in two files, though, it compiles OK. I wonder how much money you'd want to create a complete installer/upgrader that would handle installation and upgrade of all the packages an...
by martindholmes
Tue Jun 19, 2007 2:56 pm
Forum: Support
Topic: Some aspects of text styles lost during transition to RVF
Replies: 8
Views: 22493

I've just updated to the latest release of TRichView, and now the superscript sizes are correct, but the background colours are still not appearing.

Cheers,
Martin
by martindholmes
Tue Jun 19, 2007 12:38 pm
Forum: Support
Topic: Cant install RVXML after installing TRichView reg-key
Replies: 9
Views: 23556

I have a similar problem on Delphi 2005 with the latest TRichView and the latest RVXML. I think there's a serious issue here.
by martindholmes
Tue Jun 19, 2007 12:22 pm
Forum: Support
Topic: Some aspects of text styles lost during transition to RVF
Replies: 8
Views: 22493

Yes, those options are included, so that's not the problem. Can you think of anything else that might cause this?

Cheers,
Martin
by martindholmes
Mon Jun 18, 2007 12:18 pm
Forum: Support
Topic: Some aspects of text styles lost during transition to RVF
Replies: 8
Views: 22493

Some aspects of text styles lost during transition to RVF

I'm streaming out the contents of one TRichViewEdit into another one, and then saving the results as RTF. This seems to work OK, except for one problem: some aspects of some text styles disappear. For instance, I have some text styles that simply set a background colour for the text (light red, ligh...
by martindholmes
Wed Jun 06, 2007 12:50 pm
Forum: Support
Topic: Errors when saving and loading RVF from stream
Replies: 5
Views: 17212

Errors when saving and loading RVF from stream

Hi there, I'm trying to implement a crude undo system for operations which cannot be undone through the normal Undo functionality (for instance, after using functions like those described here: http://www.trichview.com/forums/viewtopic.php?p=6701#6701 Basically, what I want to do is stream out the c...
by martindholmes
Mon Jun 04, 2007 12:58 pm
Forum: Support
Topic: Stripping unwanted returns
Replies: 4
Views: 14122

None of those functions does exactly what I need to do, so I have to write my own based on them. To do that, I need to understand a couple of undocumented things. Could you help with these? SaveAsPrev rvbpFullWidth In my case, the linebreaks I want to remove are those which are not preceded by an em...
by martindholmes
Thu May 31, 2007 2:47 pm
Forum: Support
Topic: Stripping unwanted returns
Replies: 4
Views: 14122

That's great! Exactly what I need.

All the best,
Martin
by martindholmes
Thu May 31, 2007 12:35 pm
Forum: Support
Topic: Stripping unwanted returns
Replies: 4
Views: 14122

Stripping unwanted returns

Hi there, I'm trying to code a routine which will deal with the extra return characters in text which is copy/pasted from an email. Email programs usually hard-wrap text at about 80 characters. I can assume that a single return which is not followed by whitespace or another return is a hardwrap that...
by martindholmes
Thu May 17, 2007 4:46 pm
Forum: Support
Topic: RVHTML and UTF-8
Replies: 3
Views: 12067

Does rvhtml detect any encodings at all, or do I need to parse the file and figure out the encoding before passing it to rvhtml?

Cheers,
Martin
by martindholmes
Thu May 17, 2007 12:33 pm
Forum: Support
Topic: RVHTML and UTF-8
Replies: 3
Views: 12067

RVHTML and UTF-8

Hi there, When I import an HTML file (using RVHTML) with a UTF-8 byte-order mark at the beginning (EF BB BF), the BOM is shown in my TRichViewEdit component, like this:  as if it were a sequence of single-byte characters. Any Unicode text is also garbled. The file contains not only the BOM, bu...
by martindholmes
Wed Apr 25, 2007 6:05 pm
Forum: Support
Topic: LoadTextW and Unicode encoding
Replies: 2
Views: 10528

OK, I guess I'll have to try to auto-detect UTF-8 then. I've written some code for doing that in the past.

Cheers,
Martin
by martindholmes
Wed Apr 25, 2007 12:44 pm
Forum: Support
Topic: LoadTextW and Unicode encoding
Replies: 2
Views: 10528

LoadTextW and Unicode encoding

Hi there, The documentation for LoadTextW says: For LoadTextW: File must be in Unicode encoding. My question is: what constitutes Unicode encoding? A Unicode text file could be in UTF-16 BE or UTF-16 LE; the byte order mark will reveal this. However, UTF-8, the most commonly-used Unicode encoding, d...
by martindholmes
Sun Mar 04, 2007 12:29 am
Forum: Support
Topic: Copy/paste without using the clipboard
Replies: 4
Views: 16381

That's just what I need. Many thanks!

Cheers,
Martin
by martindholmes
Fri Mar 02, 2007 1:41 pm
Forum: Support
Topic: Copy/paste without using the clipboard
Replies: 4
Views: 16381

Copy/paste without using the clipboard

Hi there, I need to move some data from one TRichViewEdit to another -- actually, I'm inserting the entire contents of one TRVE into the cursor position of the other. The simplest way to do this would be using copy/paste via the clipboard, but I don't want to do that because that will replace the pr...