View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
R.VENKATARAMAN R.VENKATARAMAN is offline
external usenet poster
 
Posts: 74
Default two procedures in the same sheet one a workbook even procedure

thanks.shall try that.

papou wrote in message
...
Hello
Add in first line of your command button code the following:
Application.EnableEvents = False
And remember to set it back to True:
Application.EnableEvents = True

HTH
Cordially
Pascal

"R.VENKATARAMAN" &&& a écrit dans le message de
...
I have two procedures in the same sheet.

I have a commandbutton in a sheet with code in a general module

necessating
selecting a cell which is also the target in the workbook event

procedure
given below.

I have another procedure which is workbook event as follows
Workbook_SheetSelectionChange(ByVal sh As Object, ByVal target As Range)

now if I click the commandbutton it goes into the workbook event and due

to
error the code stops.

Neither the command button code nor the work book event is executed

when I click command button I DONT WANT the workbook procedure to

operate
at
all.

hoope I made myself clear

any solutions?