Userform Issue

B

Bill

Hello,
I have several user form. With one, when it appears on the screen, you can
select and move it around and have many, many images of it on the screen. I
use the following for all forms:

application.screenupdating = true
load userform
userform.show
userform.hide
unload userform
application.screenupdating = false

I thought the screenupdating = true would prevent that. Any ideas?

Thanks,

Bill
 
A

Andy Pope

Hi,

Are you selecting or activating any cells on a hidden worksheet once
that userform is loaded?

Cheers
Andy
 
A

Andy Pope

Activating cells on a hidden sheet whilst the userform is displayed will
cause ghosting if you move the userform.

I suggest you confirm this by simply making the sheet visible and then
move your userform around. If the problem goes away you will need to
alter your code. You can still reference and use the cells on the hidden
sheet just not activate them. Most tasks do not require you to activate
the cells in order to manipulate them.

Cheers
Andy
Yes. Is that an issue?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top