I don't have any documentation for Word VBA. Is it available for free
on the Internet?

Re: Word VBA Documentation by Jezebel

Jezebel
Mon Jul 31 17:20:08 CDT 2006

The basic documentation is built-in -- in VBA use the Object Browser and
Help. If you put your cursor in any keyword -- in code or in the Immediate
window -- and press F1, you get the documentation for that keyword. Apart
from that, there's the entire MSDN library on the Microsoft site.

There are two parts to the documentation you need --

1. VBA as a language. This is the same for any application (that is, Word
VBA is the same language as Excel VBA or CorelDraw VBA, etc).

2. The object models for the application you're dealing with. In this case,
Word and to a lesser extent Office (which handles the menus); plus any other
libraries you choose to add to your project.




"James Reid" <a8736d53@hotmail.com> wrote in message
news:1154383434.185400.71180@m73g2000cwd.googlegroups.com...
>I don't have any documentation for Word VBA. Is it available for free
> on the Internet?
>



Re: Word VBA Documentation by Jay

Jay
Mon Jul 31 18:32:56 CDT 2006

Besides what's in the Help and the Object Browser, there are the
so-called IntelliSense popup lists of methods and properties you get
when you type an object's name followed by a dot. These are the most
convenient sources of information.

The content of the Help files is also on line in the MSDN site. Start
at http://msdn.microsoft.com/office/reference/vba/default.aspx and
select the program and version you're interested in.

Also look at the FAQ pages on the site in my signature.

--
Regards,
Jay Freedman
Microsoft Word MVP FAQ: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the
newsgroup so all may benefit.

On Tue, 1 Aug 2006 08:20:08 +1000, "Jezebel"
<warcrimes@whitehouse.gov> wrote:

>The basic documentation is built-in -- in VBA use the Object Browser and
>Help. If you put your cursor in any keyword -- in code or in the Immediate
>window -- and press F1, you get the documentation for that keyword. Apart
>from that, there's the entire MSDN library on the Microsoft site.
>
>There are two parts to the documentation you need --
>
>1. VBA as a language. This is the same for any application (that is, Word
>VBA is the same language as Excel VBA or CorelDraw VBA, etc).
>
>2. The object models for the application you're dealing with. In this case,
>Word and to a lesser extent Office (which handles the menus); plus any other
>libraries you choose to add to your project.
>
>
>
>
>"James Reid" <a8736d53@hotmail.com> wrote in message
>news:1154383434.185400.71180@m73g2000cwd.googlegroups.com...
>>I don't have any documentation for Word VBA. Is it available for free
>> on the Internet?
>>
>

Re: Word VBA Documentation by Doug

Doug
Mon Jul 31 22:42:47 CDT 2006

See the article "Getting To Grips With VBA Basics In 15 Minutes" at:

http://www.word.mvps.org/FAQs/MacrosVBA/VBABasicsIn15Mins.htm

and other information on that site.

See the Visual Basic Help File.

Google
--
Hope this helps.

Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.

Doug Robbins - Word MVP

"James Reid" <a8736d53@hotmail.com> wrote in message
news:1154383434.185400.71180@m73g2000cwd.googlegroups.com...
>I don't have any documentation for Word VBA. Is it available for free
> on the Internet?
>



Re: Word VBA Documentation by James

James
Tue Aug 01 16:13:16 CDT 2006

Thanks Jezebel, Jay, and Doug. You've all been very helpful. My
education in the wonderful world of Word VBA programming has started
off with a bang!