
Originally Posted by
ben_sumner
Hi,
The first time that I run this code it creates the new sheet and adds the code to it fine but the second time that I run it it will crash excel and exit the program.
I have tried writting the code in different ways that hasn't helped. Here is the code:
Dim newWorkSheetName As String
On Error Resume Next
'Asks the user to input the Name of the new schedule.
newWorkSheetName = InputBox("Please input the name of the new Schedule:", _
"New Worksheet Name")
ThisWorkbook.Worksheets.Add(After:=Worksheets(Worksheets.Count)).Name = newWorkSheetName
Dim VBCodeMod As CodeModule
Dim InsertLineIndex As Long
Set VBCodeMod = ThisWorkbook.VBProject.VBComponents(Worksheets(newWorkSheetName).CodeName).CodeModule
With VBCodeMod
InsertLineIndex = .CountOfLines + 1
.InsertLines InsertLineIndex, "Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)" & Chr(13)
InsertLineIndex = InsertLineIndex + 1
.InsertLines InsertLineIndex, _
" Call sheetDoubleClick(ActiveSheet.Name)" & Chr(13)
InsertLineIndex = InsertLineIndex + 1
.InsertLines InsertLineIndex, "End Sub" & Chr(13)
'more code but very similar
End With
Set VBCodeMod = Null
Since it crashes excel I don't get a chance to see an error message or have a change to debug it
Any help or suggestions would be fantastic. I am VERY stuck
Ben
Bookmarks