View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
Tom Ogilvy Tom Ogilvy is offline
external usenet poster
 
Posts: 27,285
Default Disable Click event

The easiest might be to use a different event that doesn't get fired such as
mousedown or mouseup instead of click.

--
Regards,
Tom Ogilvy


"Ashman" wrote in message
...
Hi all,

I am seeing if anyone can help. I want to run a procedure that inserts a
value in a combo box, but everytime I do this it does to the click event

for
this combo box, which I do not want to happen. I have tryed to disable

the
click event by using
Application.enableevents = false But this does not work

Any ideas would be much appreciated.

I am using excel 2003 and XP

Ashman