Jump to content

Remove Excel Modules


Go to solution Solved by soonyee91,

Recommended Posts

I'm trying to convert this VBA code to autoit script.

But I face this problem: syntax error. How should I write for this section?

The syntax error line is this:

".VBComponents($x).CodeModule.DeleteLines 1, .VBComponents($x).CodeModule.CountOfLines"

Below is my codes:

Func _ClearVBA()
With $oExcel.ActiveWorkbook.VBProject
For $x = .VBComponents.Count To 1 Step -1
.VBComponents.Remove .VBComponents($x)
Next
For $x = .VBComponents.Count To 1 Step -1
.VBComponents($x).CodeModule.DeleteLines 1, .VBComponents($x).CodeModule.CountOfLines
Next
EndWith
EndFunc   ;==>_ClearVBA
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...