|
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 lngModuleExists(strDoc As String, strModule As String) As Long
' Procedure : lngModuleExists
' Description: return the index of a module in the document.
' By: Chris Greaves - August 1999
' Inputs: A document name and a module name,
' Action: None.
' Returns: The index to the module. Zero ==> does not exist
' Assumes: The document is open.
' Side Effects: None.
' Tested: by the calls shown below.
Dim lngModule As Long
lngModule = 0
For lngModule = 1 To Documents(strDoc).VBProject.VBComponents.Count
If UCase(Documents(strDoc).VBProject.VBComponents(lngModule).Name) = UCase(strModule) Then
lngModuleExists = lngModule
Exit For
End If
Next lngModule
'Sub TESTlngModuleExists()
'Call lngModuleExists(ActiveDocument.Name, "module1")
'End Sub
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 |