Search found 14 matches

by Hillebrandt
Mon Apr 24, 2017 10:00 am
Forum: Support
Topic: Problem saving as HTML on UNC with pictures
Replies: 13
Views: 38224

Re: Problem saving as HTML on UNC with pictures

Hi Mr. Sergey Tkachenko,

1) it should have another name ... something like "RVIsUncOrLocalPath"
otherwise your source is no longer so "beautiful"! :wink:
2) Can you please add this "request" in the RVIsURL-Function? I use it in several places in my source.

Greetings from Papenburg, Germany ...
by Hillebrandt
Wed Apr 19, 2017 7:10 am
Forum: Support
Topic: Problem saving as HTML on UNC with pictures
Replies: 13
Views: 38224

Re: Problem saving as HTML on UNC with pictures

Hi Mr. Sergey Tkachenko,

this doesn't work for me, because I have some path look like "C:\MainDB\Signatures\Logo.jpg".
Sorry.

Greetings from Papenburg, Germany
Hillebrandt
by Hillebrandt
Tue Apr 18, 2017 8:29 am
Forum: Support
Topic: Problem saving as HTML on UNC with pictures
Replies: 13
Views: 38224

Re: Problem saving as HTML on UNC with pictures

Hi Mr. Sergey Tkachenko,

ok but that's no big problem ...
Change IsUrl to:

function RVIsURL(const s: String; const bHtmlLink : Boolean = False): Boolean;
var str: String;
{....................................}
function CheckPrefix(const Prefix: String): Boolean;
begin
Result := (Length(str ...
by Hillebrandt
Tue Apr 11, 2017 10:15 am
Forum: Support
Topic: Problem saving as HTML on UNC with pictures
Replies: 13
Views: 38224

Re: Problem saving as HTML on UNC with pictures

Hi Mr. Sergey Tkachenko,

my first idea was something like this:

if Location<>'' then
Begin
if (RVIsURL(RV_GetHTMLPath(Location))) then // <---------------- changed here
Begin // <---------------- changed here
sRealLocation := RV_GetHTMLPath(Location); // <---------------- changed here
End ...
by Hillebrandt
Fri Apr 07, 2017 9:52 am
Forum: Support
Topic: Problem saving as HTML on UNC with pictures
Replies: 13
Views: 38224

Re: Problem saving as HTML on UNC with pictures

Hi Mr. Sergey Tkachenko,

I've forgot about the problem, but it still occurs (in Version 15.3.2).
I load an html-text with image tags. It shows everything fine.
With OnSaveImage2:

Sender.GetItemExtraStrProperty(
Sender.Style.ItemNo,
rvespImageFileName,
Location
);

DoDefault := (Location ...
by Hillebrandt
Tue Jul 07, 2015 10:46 am
Forum: Support
Topic: Problem saving as HTML on UNC with pictures
Replies: 13
Views: 38224

Hi Mr. Sergey Tkachenko,

Sorry for the delay. ...
I was in vacation, too! ;-)

You can use OnHTMLSaveImage2 event.
In this event, you can save the picture yourself where you need,
a provide a string that will be inserted in <img src>.

Ok, for now, I have problem rebuilding the problem,
when I ...
by Hillebrandt
Tue Jul 07, 2015 9:45 am
Forum: Support
Topic: Support for Image Absolute Positioning
Replies: 7
Views: 23903

Sergey Tkachenko wrote:Absolute picture positioning is not planned for near future, sorry. ...
That's realy a great pity :cry: , but thanks for response.

Greetings from Germany
Hillebrandt
by Hillebrandt
Mon Jul 06, 2015 7:43 am
Forum: Support
Topic: Problem saving as HTML on UNC with pictures
Replies: 13
Views: 38224

[[Push]]

What about this "problem"?
We doesn't like to do changes on source of third-party-software,
so please insert this or find a better (righter) way to resolve
the described error.

Greetings from Germany
Hillebrandt
by Hillebrandt
Mon Jul 06, 2015 7:40 am
Forum: Support
Topic: Support for Image Absolute Positioning
Replies: 7
Views: 23903

[[Push]]

Please informate me about the state of the feature.
Our customers still complaining about this. :-(

Greetings from Germany
Hillebrandt
by Hillebrandt
Thu Jun 11, 2015 7:53 am
Forum: Support
Topic: Problem saving as HTML on UNC with pictures
Replies: 13
Views: 38224

Problem saving as HTML on UNC with pictures

Hi,

if i use

...
var
...
rveMail : TRichViewEdit;
sPath1, sPath2 : String;
...
begin
...
sPath1 := 'C:\MyApp\Data\';
sPath2 := '\\server\MyApp\Data\';
...
rveMail.SaveHtml(
sPath1 + 'temp.html',
'EMailEditorRv-Design',
sPath1,
[rvsoOverrideImages, rvsoUTF8]
);
...
end;

it worked ...
by Hillebrandt
Thu Jun 04, 2015 8:55 am
Forum: Support
Topic: Support for Image Absolute Positioning
Replies: 7
Views: 23903

Feature Request

Hi,

is there a plan for supporting the absolute positions for images in future?
Especially for the HTML-Importer it would be very interresting!
Something like ...

<body>
<p>
<div style='position:absolute;left:19px;top:24px;width:279px;height:177px'>
<img width=279 height=177 src="imgs/1.png ...
by Hillebrandt
Wed May 27, 2015 8:18 am
Forum: Support
Topic: Paste image from internet and resize
Replies: 16
Views: 50966

It works

Hello Mr. Tkachenko,

thanks a lot! That worked perfectly!

Greetings from Germany
Hillebrand
by Hillebrandt
Tue May 26, 2015 10:56 am
Forum: Support
Topic: Paste image from internet and resize
Replies: 16
Views: 50966

Looks good but change was lost

Hello Mr. Tkachenko,

If I run this It looks great, but the change was lost
when I do a "Post" on the DataSet.
Is there something I have to do so that the change is registred
by the TDBRichViewEdit? Something like "BeginEdit(); ... EndEdit();"
Maybe to abtract to understand, but you can look at this ...
by Hillebrandt
Fri May 22, 2015 9:38 am
Forum: Support
Topic: Paste image from internet and resize
Replies: 16
Views: 50966

Similar Problem

Hello everyone,

I have a similar problem. In my software I have an error-report-system.
Next to simple TDBEdit-Fields for Version, Customer and some more
I use a TDBRichViewEdit for a description. The users insert screenshots
in this description. Also I make use of an "List & Label (c) combit ...