Hi there,
The following code will check whether a given procedure, function or sub exists in one of your VB projects modules:
Required reference:
-Microsoft Visual Basic for Applications Extensibility
Function ProcedureExists(ProcedureName As String) As Boolean
Dim m As Module, mo As...