Hello and welcome to CertForums.co.uk, here we host free active certification forums with links to the best free resources for Microsoft's MCSA MCSE MCDBA Cisco's CCNA CCDA and CCNP, and CompTIA's A+ Network+ i-NET+ and Security+ certifications in the UK. If you wish to post or use other advanced features you will need to register first. Registration is absolutely free and takes only a few minutes to complete so sign up today!
If you have any problems with the registration
process or your account login, please contact support
One of the girls at work had an issue where they needed to remove all pics from a word doc (it was about 2MB with the pics in, and needed to be drastically reduced for storage in the system).
In case you ever need to do this, you can add the code below to a macro. Run it, and it will remove all pictures so that when you save it, the size of the document will be reduced.
This is confirmed to work in both 2003 and 2007. I can post step-by-step instructions on how to do this in both if anyone wants.
Code:
Dim objPic As InlineShape
Dim PicCount As Integer
For Each objPic In ActiveDocument.InlineShapes
objPic.Delete
PicCount = PicCount + 1
Next objPic
MsgBox (PicCount & " Images Deleted")
I also mapped this to a keyboard shortcut (Alt + `) so that its easier to run. If you are doing this sort of thing a lot, I would recommend it, otherwise you have to get into the macro menu and run it from there.
"Im Nerdy in the extreme and whiter than sour cream"
no it was 2MB. Not particularly big in terms of size, but for the app is was being loaded into, it was far too big, and crashing the app continually. Its a webapp, and doesnt like more than about 500K.
"Im Nerdy in the extreme and whiter than sour cream"
oh yeah. part of the problem was the inclusion of large images without any attempt (or understanding of the need) to reduce the size of them. Resulting file was well over 2GB as I recall.
"Im Nerdy in the extreme and whiter than sour cream"