> Maybe...
>
[quoted text clipped - 14 lines]
>>
>> Thanks!
You can use something like:
dim myPict as Picture
set mypict = nothing
on error resume next
set mypict = worksheets("Somesheetnamehere").pictures("Panel1")
on error goto 0
if mypict is nothing then
'it's not there
else
'it's already there
if mypict.visible = false then
'make it visible???
mypict.visible = true
end if
end if
> Thanks Dave, yes I know its name (it will be "panel1")
>
[quoted text clipped - 22 lines]
> >
> > Dave Peterson

Signature
Dave Peterson
MM User - 10 Nov 2007 22:38 GMT
Thanks Dave, thats what I was after!
> You can use something like:
>
[quoted text clipped - 42 lines]
>> >
>> > Dave Peterson