Can you please help me? Any hint is precious. I have already tried the hint
from the previous post to use Displayalerts=false triiggered by the
autofilter (I have used the worksheet_calculation event on a subtotal)
however this gets triggered AFTER the messages are dispayed.
Many thanks in advance!
Best regards
--
Valeria
Maybe you have other shapes that are really tiny (or hidden???) that are causing
the trouble.
Hit F5 (edit|goto)|Special|objects
What gets selected?
Ron de Bruin has lots of code to work with shapes here:
http://www.rondebruin.nl/controlsobjectsworksheet.htm
If you can't clean up those shapes (since they're hidden) and you need help with
the macro, post back.
I'm sure you'll get help.
--
Dave Peterson
I haven't seen your exact issue but I have seen similar effects with
comments. What you can try is to set the properties for the
comments. Right click on the edge of a comment->Format comment-
>Properties->select Move but don't size with cells.
Sorry but I think you will have to do this for all of your comments.
--
Valeria
"Dave Peterson" wrote:
> .
>
You could run a macro to do his manual suggestion:
Option Explicit
Sub testme()
Dim CMT As Comment
Dim wks As Worksheet
Set wks = ActiveSheet
For Each CMT In wks.Comments
CMT.Shape.OLEFormat.Object.Placement = xlMoveAndSize
Next CMT
End Sub
If you're new to macros:
Debra Dalgleish has some notes how to implement macros here:
http://www.contextures.com/xlvba01.html
David McRitchie has an intro to macros:
http://www.mvps.org/dmcritchie/excel/getstarted.htm
Ron de Bruin's intro to macros:
http://www.rondebruin.nl/code.htm
(General, Regular and Standard modules all describe the same thing.)
--
Dave Peterson
sha.Cells(k, 7).Comment.Shape.Placement = xlMove
Many, many thanks!
--
Valeria
"zxcv" wrote:
> .
>