Forum Discussion
Sumit_Bhokare
Apr 13, 2024Brass Contributor
CopyPicture method of Picture Class failed error
Hello All, I'm facing Run time error 1004 sometime when I run code & sometime code works perfectly. for few user code run but few user face this issue. earlier it was working fine for all. when I ...
HansVogelaar
Apr 13, 2024MVP
Does it work better if you replace the first 4 lines from your screenshot with
thisWb.Worksheets("Item Details").Shapes("Picture 1").CopyPicture- Sumit_BhokareApr 13, 2024Brass Contributor
HansVogelaar It works well for me but my team member faces issue.
same thing happened earlier as well. sometimes it works fine, not sure what exactly is issue.
- HansVogelaarApr 13, 2024MVP
As a test, insert the following lines above the CopyPicture line:
Application.CutCopyMode = False
DoEvents
and below it:
DoEvents
- Sumit_BhokareApr 16, 2024Brass Contributor
I have updated code as per suggestion & its almost working for all member except one or two member 😞
getting error as below with one
Is something wrong in paste action? need to paste in any other way? should I use .pastespecial instead of .paste?