Preventing VBA editor from Popping up
Hi,
I am programmatically adding event handlers to controls on a spread
sheet. These controls are also added dynamically.
Please find below the piece of code that I am using.
With ActiveWorkbook.VBProject.VBComponents(ActiveSheet. Name).CodeModule
codeStart = .CreateEventProc("Change", obj.Name)
.InsertLines codeStart + 1, _
"msgbox " & obj.Name & ".Object.value" & vbCrLf & _
"msgbox """ & obj.Name & """"
End With
This bit works fine, but there is an unnecessary side effect.
The VBA Editor pops up displaying the module that was modified.
At the present, I am closing the editor by sending the Alt-F4 key.
However, this is very klunky as the popping up of the editor is very
obvious in slow systems.
Is there any way to prevent it? Can workbook protection help?
Any suggestions would be most welcome.
Thanks,
Jayant
|