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 ...
Search found 14 matches
- Mon Apr 24, 2017 10:00 am
- Forum: Support
- Topic: Problem saving as HTML on UNC with pictures
- Replies: 13
- Views: 38224
- 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
this doesn't work for me, because I have some path look like "C:\MainDB\Signatures\Logo.jpg".
Sorry.
Greetings from Papenburg, Germany
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 ...
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 ...
- 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 ...
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 ...
- 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 ...
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 ...
- Tue Jul 07, 2015 10:46 am
- Forum: Support
- Topic: Problem saving as HTML on UNC with pictures
- Replies: 13
- Views: 38224
- Tue Jul 07, 2015 9:45 am
- Forum: Support
- Topic: Support for Image Absolute Positioning
- Replies: 7
- Views: 23903
- Mon Jul 06, 2015 7:43 am
- Forum: Support
- Topic: Problem saving as HTML on UNC with pictures
- Replies: 13
- Views: 38224
- Mon Jul 06, 2015 7:40 am
- Forum: Support
- Topic: Support for Image Absolute Positioning
- Replies: 7
- Views: 23903
- 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 ...
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 ...
- 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 ...
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 ...
- 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
thanks a lot! That worked perfectly!
Greetings from Germany
Hillebrand
- 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 ...
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 ...
- 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 ...
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 ...