Ask a Question related to ASP Components, Design and Development.
-
s_m_b #1
how to retrieve page count from word?
I'm trying to extract the number of pages in a word 2000 document, but
can't find either the property/method via application.word, or any other
way of doing it.
does the pagenumbers method get there, since it seems to refer to the
instance of page number in the header/footer?
s_m_b Guest
-
How to retrieve locked NEW PAGE?
(C3) My client has a writer and a publisher. The writer created a new page (thus I cannot yet see it by logging into the site through Dreamweaver).... -
Getting Word Count from MS Word files
I would like to get the word count of MS Word files. I found a CFX tag on the exchange: CFX_FileSummary, but the download page is a dead link, as... -
Word Count
Is there a way to determine the word count in a story? -
placeholder text with word count embedded
Anyone still have that old (REALLY old) placeholder text from Pagemaker that had every 25 or 50 words counted out so when you placed the text you... -
count word repetitions for each pair of lines
I wonder if anyone has a script that could do the following? -Read a file containing a regular text (e.g. a news story); -Count word type... -
Tom Kaminski [MVP] #2
Re: how to retrieve page count from word?
"s_m_b" <smb20002ns@hotmail.com> wrote in message
news:Xns943D9F010AFEAsmb2000nshotrmailcom@207.46.2 48.16...Try this:> I'm trying to extract the number of pages in a word 2000 document, but
> can't find either the property/method via application.word, or any other
> way of doing it.
> does the pagenumbers method get there, since it seems to refer to the
> instance of page number in the header/footer?
[url]http://support.microsoft.com/?kbid=224351[/url]
--
Tom Kaminski IIS MVP
[url]http://www.iistoolshed.com/[/url] - tools, scripts, and utilities for running IIS
[url]http://mvp.support.microsoft.com/[/url]
[url]http://www.microsoft.com/windowsserver2003/community/centers/iis/[/url]
Tom Kaminski [MVP] Guest
-
s_m_b #3
Re: how to retrieve page count from word?
"Tom Kaminski [MVP]" <tomk (A@T) mvps (D.O.T) org> wrote in news:bptlb1
$ej86@kcweb01.netnews.att.com:
Thanks Tom - but what's the syntax for its' create.object?
> "s_m_b" <smb20002ns@hotmail.com> wrote in message
> news:Xns943D9F010AFEAsmb2000nshotrmailcom@207.46.2 48.16...>>> I'm trying to extract the number of pages in a word 2000 document, but
>> can't find either the property/method via application.word, or any other
>> way of doing it.
>> does the pagenumbers method get there, since it seems to refer to the
>> instance of page number in the header/footer?
> Try this:
> [url]http://support.microsoft.com/?kbid=224351[/url]
>s_m_b Guest
-
s_m_b #4
Re: how to retrieve page count from word?
"s_m_b" <smb20002ns@hotmail.com> wrote in
news:Xns943E617D07F58smb2000nshotrmailcom@207.46.2 48.16:
ok - found it!
> "Tom Kaminski [MVP]" <tomk (A@T) mvps (D.O.T) org> wrote in
> news:bptlb1 $ej86@kcweb01.netnews.att.com:
> Thanks Tom - but what's the syntax for its' create.object?
>
>>>> "s_m_b" <smb20002ns@hotmail.com> wrote in message
>> news:Xns943D9F010AFEAsmb2000nshotrmailcom@207.46.2 48.16...>>>>> I'm trying to extract the number of pages in a word 2000 document,
>>> but can't find either the property/method via application.word, or
>>> any other way of doing it.
>>> does the pagenumbers method get there, since it seems to refer to
>>> the instance of page number in the header/footer?
>> Try this:
>> [url]http://support.microsoft.com/?kbid=224351[/url]
>>
>s_m_b Guest
-
Dave #5
Re: how to retrieve page count from word?
I have used to following to get the number of pages in a
Word document:
' wdActiveEndAdjustedPageNumber = 1
Word.ActiveDocument.Range.Information
(wdActiveEndAdjustedPageNumber)
This will give the logical last page number (i.e. if you
have three pages in an intro section these may not go to
the final page count). To get the final page count use
wdActiveEndPageNumber ( = 3).
I hope this is what you're after.
Dave
2000 document, but>-----Original Message-----
>"s_m_b" <smb20002ns@hotmail.com> wrote in message
>news:Xns943D9F010AFEAsmb2000nshotrmailcom@207.46. 248.16...>> I'm trying to extract the number of pages in a wordapplication.word, or any other>> can't find either the property/method viato refer to the>> way of doing it.
>> does the pagenumbers method get there, since it seemsutilities for running IIS>>> instance of page number in the header/footer?
>Try this:
>[url]http://support.microsoft.com/?kbid=224351[/url]
>
>--
>Tom Kaminski IIS MVP
>[url]http://www.iistoolshed.com/[/url] - tools, scripts, andrs/iis/>[url]http://mvp.support.microsoft.com/[/url]
>[url]http://www.microsoft.com/windowsserver2003/community/cente[/url]>
>
>
>.
>Dave Guest



Reply With Quote

