Nice example. This is something my application must have!
I tried to convert this to WideStrings, to support unicode in Delphi 2007. Anyone succeeded to run this with unicode params?
The following line doesn't work in Delphi 2009, I suppose?
CopyHTMLToClipBoard('ΣΞΛΨΤ: € 4.95', 'ΣΞΛΨΤ: € 4.95');
(I don't want to convert the euro-symbol to &eur; but need html in UTF-8, this is just an example)
I have this code:
constructor TMyClipBoard.Create;
begin
inherited;
CF_HTML := RegisterClipboardFormat('HTML Format');
end;
function TMyClipBoard.FormatHTMLClipboardHeader(HTMLText: WideString): WideString;
const
CrLf = #13#10;
cStartFragment = '';
cEndFragment = '';
begin
Result :=
'Version:0.9' + CrLf +
'StartHTML:-1' + CrLf +
'EndHTML:-1' + CrLf +
'StartFragment:%.4d' + CrLf +
'EndFragment:%.4d' + CrLf +
'' +
'' +
'' +
'' +
'HTML clipboard' +
'' +
'' +
cStartFragment +
HTMLText +
cEndFragment +
'' +
'' + CrLf;
Result := WideFormat(Result, [Pos(cStartFragment, Result) + Length(cStartFragment), Pos(cEndFragment, Result)]);
end;
procedure TMyClipBoard.CopyHTMLToClipBoard(const APlainText: WideString; const AHTMLText: WideString = '');
var
LFormattedHTML: WideString;
begin
Open;
try
EmptyClipboard;
if AHTMLText '' then
begin
LFormattedHTML := FormatHTMLClipboardHeader(AHTMLText);
SetBuffer(CF_HTML, PWideChar(LFormattedHTML)^, (Length(LFormattedHTML) + 1 * SizeOf(WideChar)));
end;
SetBuffer(CF_UNICODETEXT, PWideChar(APlainText)^, (Length(APlainText) + 1 * SizeOf(WideChar)));
finally
Close;
end;
end;
But this function call is not working:
procedure TForm14.FormCreate(Sender: TObject);
begin
MyClipBoard.CopyHTMLToClipBoard('Plain text: €950.00 ΣΞΛΨΤ ữỪỖể', 'HTML text: €950.00 ΣΞΛΨΤ ữỪỖể');
end;
Thanks,
Bas