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