> Thanks very much, thats very helpfull as a start.
>
[quoted text clipped - 130 lines]
> > > copy
> > >> > > command in Excel to the paste command in word.
You can place your cursor on a term in your macro and press F1 - it will
bring up a Help topic for that term. Look at the top for Properties,
Methods, and/or Applies To. Make sure as Tony said that you have a
reference to Word (Tools >> References >> Microsoft Word object).
Ed
> Help - or the Object Browser in Word (or the object browser in Excel if
> you
[quoted text clipped - 160 lines]
>> > > copy
>> > >> > > command in Excel to the paste command in word.
Ayse - 24 Mar 2006 09:31 GMT
Thanks Ed, Thanks Tony,
cheers

Signature
Ayse
"Ed":
> You can place your cursor on a term in your macro and press F1 - it will
> bring up a Help topic for that term. Look at the top for Properties,
[quoted text clipped - 167 lines]
> >> > > copy
> >> > >> > > command in Excel to the paste command in word.
Ayse - 28 Mar 2006 08:49 GMT
Hi,
Does one compile vb code writen in excell vb and make an executable file
like normal vb?
In excell, one of the optios is "compile on demand", but i cant find the
place to compile from. And writing "compile" in excell help produces nothing.

Signature
Ayse
"Ed":
> You can place your cursor on a term in your macro and press F1 - it will
> bring up a Help topic for that term. Look at the top for Properties,
[quoted text clipped - 167 lines]
> >> > > copy
> >> > >> > > command in Excel to the paste command in word.
Tony Jollans - 28 Mar 2006 09:51 GMT
VBA code does not compile to a separate executable.
It is not essential - but it is a good idea - to compile before saving the
containing Workbook (or Document or whatever) for at least two reasons ---
(a) to check for any errors
(b) for performance - to stop it being compiled every time it's run
If compiled, the compiled version of the code is stored alongside the source
in the Workbook. If you don't compile, the source will be compiled to
somewhere temporary every time the code is run.
--
Enjoy,
Tony
> Hi,
>
[quoted text clipped - 179 lines]
> > >> > > copy
> > >> > >> > > command in Excel to the paste command in word.
Ayse - 28 Mar 2006 10:23 GMT
Thanks Tony,
cheers

Signature
Ayse
"Tony Jollans":
> VBA code does not compile to a separate executable.
>
[quoted text clipped - 216 lines]
> > > >> > > copy
> > > >> > >> > > command in Excel to the paste command in word.