Dificilmente as senhas das planilhas hoje não são quebradas com grande facilidade. Poucos de nós sabemos resguardar a segurança das nossas planilhas.
Não me perguntem o motivo de aprender a fazer isso. Se você nunca pensou em fazê-lo é porque ainda está distante de merecer utilizá-lo.
- Como posso deletar uma procedure dentro de um módulo na minha aplicação utilizando o VBA?
Sub DelProc (ByVal wb As Workbook, ByVal DeleteFromModuleName As String, ByVal ProcedureName As String)
Dim VBCM As CodeModule, ProcStartLine As Long, ProcLineCount As Long
On Error Resume Next
Set VBCM = wb.VBProject.VBComponents(DeleteFromModuleName).CodeModule
If Not VBCM Is Nothing ThenLet ProcStartLine = 0Let ProcStartLine = VBCM.ProcStartLine(ProcedureName, vbext_pk_Proc)
If ProcStartLine > 0 Then ' prosedyren finnes, slett den
Let ProcLineCount = VBCM.ProcCountLines(ProcedureName, vbext_pk_Proc)
VBCM.DeleteLines ProcStartLine, ProcLineCount
End If
Set VBCM = Nothing
End If
On Error GoTo 0
End Sub
Tags: Bernardes, MS, Microsoft, Office, Excel, delete, erase, module, procedure, function
André Luiz Bernardes
A&A® - Work smart, not hard in any place.
Skype: inanyplace