View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Dave Peterson[_5_] Dave Peterson[_5_] is offline
external usenet poster
 
Posts: 1,758
Default Stop execution of ThisWorkBook Code

In my simple testing (xl2002, though), I couldn't duplicate this.

but maybe you could try:

application.enableevents = false
'your addfromfile code
application.enableevents = true

(the _activate and _deactivate events didn't seem to fire in my testing.)



Anirban wrote:

I am using EXCEL 97 and I am adding ThisWorkBook module which has
WorkBook_Open, _BeforeClose, _BeforeSave, _Activate and _Deactivate
events
declared through Code (using VB application extensibility library)

Application.VBE.VBProjects("YourVBAProject").VBCom ponents("ThisWorkbook").CodeModule.AddFromFile
"FileName.txt"

As soon as the code is copied, it is auto executing. I would like to
stop its execution, close it and reopen it to start execution.

How do I do this?

--
Anirban
------------------------------------------------------------------------
Anirban's Profile: http://www.excelforum.com/member.php...fo&userid=9871
View this thread: http://www.excelforum.com/showthread...hreadid=318724


--

Dave Peterson