Are you sure that is the only code? Look into the sheet and workbook codemodules for event code -
the workbook may have code to manipulate the logo whenever something changes on the sheet.
You could also try
Application.EnableEvents = False
at the top of your code, with
Application.EnableEvents = True
at the bottom, to see if that clears things up.
HTH,
Bernie
MS Excel MVP
"SchoutenCC" <Zark...@gmail.com> wrote in message
news:07eaa486-0675-4344...@f63g2000hsf.googlegroups.com...
On 6 aug, 14:23, "Bernie Deitrick" <deitbe @ consumer dot org> wrote:
> Are you sure that is the only code? Look into the sheet and workbook codemodules for event code -
> the workbook may have code to manipulate the logo whenever something changes on the sheet.
It doesn't as far as i can see... no modules at all in the sheet "to
be manipulated" and only one self-made module in the "macro menu"
sheet.
> You could also try
> Application.EnableEvents = False
> at the top of your code, with
> Application.EnableEvents = True
> at the bottom, to see if that clears things up.
Thanks for the tip; looking at http://support.microsoft.com/kb/213720
it seems this just temporarily 'deletes' all message boxes/alerts
which may not solve the root problem but definitely cover it up ;)
Best,
Chris
You're thinking of Application.DisplayAlerts. EnableEvents = False will prevent any code in the
Thisworkbook or worksheet codemodules from running. If it 'fixes' the problem, it means that you
have code that manipulates the logo, and need to find and delete it.
Bernie
MS Excel MVP
>> You could also try
>> Application.EnableEvents = False
>> at the top of your code, with
>> Application.EnableEvents = True
>> at the bottom, to see if that clears things up.
>
> Thanks for the tip; looking at http://support.microsoft.com/kb/213720
>
> Best,
> Chris