PeterRooney
Fri Mar 11 08:51:02 CST 2005
Cheers, Jay!
I may be old-fashioned, but I like a nice reference manual I can look at on
my desk, sometimes!
Thanks for your help - have a good weekend!
Pete
"Jay Freedman" wrote:
> Hi Pete,
>
> The entire VBA help system is on the MSDN web site, if you don't want to use
> the one that's already installed on your computer. Start at
>
http://msdn.microsoft.com/library/en-us/off2000/html/wohowFrequentlyAsked.asp.
> Use the left-hand navigation pane to find the rest of the topics.
>
> Within the VBA editor, put the cursor on any keyword (such as ByVal) and
> press F1 to open directly to the help topic about that word.
>
> The Macros section of the FAQs at
http://word.mvps.org is a good but
> disorganized set of reference material. Try using the Search facility to
> find topics that use the things you're interested in.
>
> --
> Regards,
> Jay Freedman
> Microsoft Word MVP FAQ:
http://word.mvps.org
>
> Peter Rooney wrote:
> > Greg,
> >
> > Thanks for this - it works fine, although I'm not sure I know why..!
> > :)) I think I need a nice downloadable Word VBA reference to fully
> > understand ByVALs & stuff - any Ideas where I might find one?
> >
> > Regards & have a good weekend
> >
> > Pete
> >
> >
> >
> > "Greg" wrote:
> >
> >> Pete,
> >>
> >> Not sure if this helps, but how about something like:
> >>
> >> Sub Doze(ByVal lngPeriod As Long)
> >> DoEvents
> >> Sleep lngPeriod
> >> ' Call it in desired location to sleep for 10 seconds like this:
> >> ' Doze 10000
> >> 'Private Declare Sub Sleep Lib "kernel32" (ByVal dwMilliseconds As
> >> Long) must
> >> 'appear in the module level
> >> End Sub
>
>
>