 |
BorlandTalk.com Borland discussion newsgroups
|
| View previous topic :: View next topic |
| Author |
Message |
Nico Callewaert Guest
|
Posted: Mon Sep 13, 2004 11:26 am Post subject: Paste text from Delphi RichEdit into Word |
|
|
Hi,
Is it possible to copy the contents of a TRichEdit into a Word
document ? Any example ?
Thanks in advance, Nico
|
|
| Back to top |
|
 |
Nico Callewaert Guest
|
Posted: Mon Sep 13, 2004 12:43 pm Post subject: Re: Paste text from Delphi RichEdit into Word |
|
|
Great ! It's working,
Thanks a lot,
Nico
"Deborah Pate (TeamB)" <d.pate (AT) blueyonder (DOT) co.not-this-bit.uk> wrote:
| Quote: | Nico Callewaert:
Is it possible to copy the contents of a TRichEdit into a
Word document ? Any example ?
Yes.
wdPasteRTF = $00000001;
var
..
RichEdit1.SelectAll;
RichEdit1.CopyToClipboard;
Word.Selection.PasteSpecial(DataType := wdPasteRTF);
--
Deborah Pate (TeamB) http://delphi-jedi.org
TeamB don't see posts sent via Google or ISPs
Use the real Borland server: newsgroups.borland.com
http://www.borland.com/newsgroups/genl_faqs.html
|
|
|
| Back to top |
|
 |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|