Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi all, i am using Chip Pearsons code below to insert some code in a
worksheet. When i start the macro with F8 and then run through with F5 it works fine, however when i run the full code excel gives me a dialog box and says "Sorry excel encountered a problem and has to close" and then re-starts ?? Any help would be appreciated. Sub BBBStdR() ' On Error Resume Next CreateEventProcedure On Error Resume Next Application.OnTime Now + TimeValue("00:00:01"), "MoveKTLToArchiveR" End Sub Sub CreateEventProcedure() Dim VBProj As VBIDE.VBProject Dim VBComp As VBIDE.VBComponent Dim CodeMod As VBIDE.CodeModule Dim LineNum As Long, sh As String Const DQUOTE = """" ' one " character sh = ActiveWorkbook.ActiveSheet.CodeName Set VBProj = ActiveWorkbook.VBProject Set VBComp = VBProj.VBComponents(sh) Set CodeMod = VBComp.CodeModule With CodeMod LineNum = .CreateEventProc("BeforeDoubleClick", "Worksheet") LineNum = LineNum + 1 .InsertLines LineNum, "Cancel = True" .InsertLines LineNum, "Worksheets(""0908 RMT"").Activate" .InsertLines LineNum, "Application.ActiveSheet.ShowAllData" .InsertLines LineNum, "Cancel = True" End With End Sub Best regards, Les Stout *** Sent via Developersdex http://www.developersdex.com *** |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Help using Chip Pearsons code to count cells with color | Excel Discussion (Misc queries) | |||
Pearsons | Excel Worksheet Functions | |||
Chip Pearsons "Rowlander" add-in won't install | Excel Discussion (Misc queries) | |||
Excel code convert to Access code - Concat & eliminate duplicates | Excel Programming | |||
To Chip Pearsons | Excel Programming |