detect if a macro or code module exist

rico

New Member
Joined
Aug 26, 2002
Messages
2
From Word or Access I need to find out if a workbook has any macros or code/class modules. Is there away to do this in VBA?

Thank you
 

Excel Facts

Bring active cell back into view
Start at A1 and select to A9999 while writing a formula, you can't see A1 anymore. Press Ctrl+Backspace to bring active cell into view.
Hi, welcome to the board. You can use this function, passing the workbook name to it.<pre>Function WBHasMacros(WBName As String) As Variant
Dim VBProj 'As VBProject
Dim VBComp 'As VBComponent

Set VBProj = Application.Workbooks(WBName).VBProject
If VBProj.Protection = vbext_pp_locked Then WBHasMacros = _
CVErr(xlErrValue): Exit Function
For Each VBComp In VBProj.VBComponents
If VBComp.CodeModule.CountOfLines > 2 Then
WBHasMacros = True
Exit Function
End If
Next VBComp
End Function</pre>Example:

?WBHasMacros("MyFormulas.xla")
True

If the workbook is locked, the function will return an error (#VALUE)

_________________
Regards,

Juan Pablo G.
MrExcel.com Consulting
This message was edited by Juan Pablo G. on 2002-08-27 17:25
 
Upvote 0
Juan,

Just a question of clarification:

"...If VBComp.CodeModule.CountOfLines > 2 Then..."

You use it in case there exist an Option Explicit declaration on Line 1?

TIA,
Dennis
 
Upvote 0

Forum statistics

Threads
1,215,054
Messages
6,122,895
Members
449,097
Latest member
dbomb1414

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top