LinkBack Thread Tools Search this Thread Display Modes
Prev Previous Post   Next Post Next
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 8
Default avoiding VBEopen when using CreateEventProc

Thanks to the contributions of this forum I have been able to create a
function which inserts into the CodeModule behind Sheet2 Selection
Change code (as below).

The problem I have is that when the function is called VBE is fired up
and displays the CodeModule it's just written into.

How can I avoid this?

Matthew

Function insertSelectionChange(wkbNew As Workbook)
'Dim wkbNew As Workbook
'Set wkbNew = Workbooks.Add
Dim startPoint As Long

With wkbNew.VBProject.VBComponents("sheet2").CodeModule
startPoint = .CreateEventProc("selectionChange", "worksheet") + 1
..InsertLines startPoint, "'Application.ScreenUpdating = true" &
Chr(13) & _
" If selection.Row = 1 Or _" & Chr(13) & _
" selection.Interior.ColorIndex = 3 Or _" & Chr(13) & _
" selection.Areas.Count 1 Then Exit Sub" & Chr(13) & _
" If CBool(InStr(1, selection.EntireColumn.End(xlUp), ""Type"")) =
True Then" & Chr(13) & _
" If selection.Rows.Count = 1 And selection.Count = 15 Then" &
Chr(13) & _
" If assayFileModule.carryOverQuery2(selection.Rows.Cou nt) =
True Then" & Chr(13) & _
" Call assayFileModule.storeCmpds_sheet(selection)" &
Chr(13) & _
" Else" & Chr(13) & _
" Exit Sub" & Chr(13) & _
" End If" & Chr(13) & _
" ElseIf selection.Rows.Count = 7 And selection.Count = 105 And
CBool(InStr(1, selection.Cells(1).offset(, -2).Value, ""plate"")) =
True Then" & Chr(13) & _
" If assayFileModule.carryOverQuery2(selection.Rows.Cou nt) =
True Then" & Chr(13) & _
" Call assayFileModule.storeCmpds_sheet(selection)" &
Chr(13) & _
" Else" & Chr(13) & _
" Exit Sub" & Chr(13) & _
" End If" & Chr(13) & _
" End If" & Chr(13) & _
" End If"
End With
End Function

 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
CreateEventProc for OLE button crashes Excel Jag Man Excel Programming 3 February 18th 04 11:25 PM
Using CreateEventProc fails when used with a Worksheet. George Doster Excel Programming 3 October 22nd 03 04:22 PM
Excel crashes with createEventProc for a button Dave Peterson[_3_] Excel Programming 0 August 25th 03 11:31 PM
Excel crashes with createEventProc for a button Tom Ogilvy Excel Programming 4 August 25th 03 08:30 PM
Excel crashes with createEventProc for a button tina salgia Excel Programming 0 August 25th 03 06:17 PM


All times are GMT +1. The time now is 08:11 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"