From: cliffe45 on
MS Word should add an image-count function, either as a tool similar to Tools
> Language > word count, or as an automatically generated statistic in
document properties. I believe this is available in Sun's Open Office, and
was quite surprised I couldn't unearth it somewhere in Word's Tools >
Options. I often receive drafts to edit that contain 100 or more unlabeled
graphics (i.e. can't generate table of figures) and want to know what I've
got on my plate w/o counting them manually. VB scripts are great for techies,
but please - how hard could it be to build an executable add-in?
--
- cliffe45

----------------
This post is a suggestion for Microsoft, and Microsoft responds to the
suggestions with the most votes. To vote for this suggestion, click the "I
Agree" button in the message pane. If you do not see the button, follow this
link to open the suggestion in the Microsoft Web-based Newsreader and then
click "I Agree" in the message pane.

http://www.microsoft.com/office/community/en-us/default.mspx?mid=3e282722-47fc-4794-a2f6-4c626cf068a3&dg=microsoft.public.word.vba.general
From: Doug Robbins - Word MVP on
Run a macro containing the following code:

MsgBox ActiveDocument.InlineShapes.Count

--
Hope this helps,

Doug Robbins - Word MVP

Please reply only to the newsgroups unless you wish to obtain my services on
a paid professional basis.

"cliffe45" <cliffe45(a)discussions.microsoft.com> wrote in message
news:3E282722-47FC-4794-A2F6-4C626CF068A3(a)microsoft.com...
> MS Word should add an image-count function, either as a tool similar to
> Tools
>> Language > word count, or as an automatically generated statistic in
> document properties. I believe this is available in Sun's Open Office, and
> was quite surprised I couldn't unearth it somewhere in Word's Tools >
> Options. I often receive drafts to edit that contain 100 or more
> unlabeled
> graphics (i.e. can't generate table of figures) and want to know what I've
> got on my plate w/o counting them manually. VB scripts are great for
> techies,
> but please - how hard could it be to build an executable add-in?
> --
> - cliffe45
>
> ----------------
> This post is a suggestion for Microsoft, and Microsoft responds to the
> suggestions with the most votes. To vote for this suggestion, click the "I
> Agree" button in the message pane. If you do not see the button, follow
> this
> link to open the suggestion in the Microsoft Web-based Newsreader and then
> click "I Agree" in the message pane.
>
> http://www.microsoft.com/office/community/en-us/default.mspx?mid=3e282722-47fc-4794-a2f6-4c626cf068a3&dg=microsoft.public.word.vba.general

From: cliffe45 on
Works like a charm! That is FAR simpler than any script I could find
elsewhere. Thank you, Doug.
--
- cliffe45


"Doug Robbins - Word MVP" wrote:

> Run a macro containing the following code:
>
> MsgBox ActiveDocument.InlineShapes.Count
>
> --
> Hope this helps,
>
> Doug Robbins - Word MVP
>
> Please reply only to the newsgroups unless you wish to obtain my services on
> a paid professional basis.
>
> "cliffe45" <cliffe45(a)discussions.microsoft.com> wrote in message
> news:3E282722-47FC-4794-A2F6-4C626CF068A3(a)microsoft.com...
> > MS Word should add an image-count function, either as a tool similar to
> > Tools
> >> Language > word count, or as an automatically generated statistic in
> > document properties. I believe this is available in Sun's Open Office, and
> > was quite surprised I couldn't unearth it somewhere in Word's Tools >
> > Options. I often receive drafts to edit that contain 100 or more
> > unlabeled
> > graphics (i.e. can't generate table of figures) and want to know what I've
> > got on my plate w/o counting them manually. VB scripts are great for
> > techies,
> > but please - how hard could it be to build an executable add-in?
> > --
> > - cliffe45
> >
> > ----------------
> > This post is a suggestion for Microsoft, and Microsoft responds to the
> > suggestions with the most votes. To vote for this suggestion, click the "I
> > Agree" button in the message pane. If you do not see the button, follow
> > this
> > link to open the suggestion in the Microsoft Web-based Newsreader and then
> > click "I Agree" in the message pane.
> >
> > http://www.microsoft.com/office/community/en-us/default.mspx?mid=3e282722-47fc-4794-a2f6-4c626cf068a3&dg=microsoft.public.word.vba.general
>