|
Visual Basic (VB and VBA) |
|
Copyright 1999-2001 Christopher Greaves. All rights reserved. Home Page and email to [email protected] |
| If in doubt, record a macro and inspect the entrails! |
Please read the DISCLAIMER.
Here is an INDEX to all the procedures.
You will probably need one copy of my GLOBAL DECLARATIONS.
Public Function lngStylesInDoc(strAr() As String, doc As Document) As Long
' Procedure : lngStylesInDoc
' Description: Determines styles actually in use in a document.
' By: Chris Greaves Inc.
' Inputs: An array name
' A document.
' Returns: LONG number of styles found.
' Assumes: Nothing
' Side Effects: None.
' Tested: by the calls shown below.
' This version obtains names of all styles that MSWord THINKS are in use
' Then tests to see which ones actually ARE in use.
' First get a list of all styles in the document.
Dim sty As Style
For Each sty In Documents(doc).Styles
strAr(UBound(strAr)) = sty.NameLocal
ReDim Preserve strAr(UBound(strAr) + 1)
Next sty
ReDim Preserve strAr(UBound(strAr) - 1)
lngStylesInDoc = UBound(strAr) + 1
End Function
| We all knew nothing when we started … |
|
Home Page and Contact Information Send email to [email protected]. This page was last updated Thursday, November 15, 2001 |