vb.net - Using VB as automation, I want to tick the PowerPoint option box "Do not compress images in file" -
i'm adding feature program copies file surfer , pastes powerpoint slide. surfer image large, , need have small portion of surfer file visible in framing of powerpoint slide. the problem i'm having when open powerpoint, default have copied , pasted images compressed. whatever showing in powerpoint slide blurry because of compression. when without automation , turn off image compression, looks perfect. please note program not me, it's distributed others within company, can't expect other people want use program change default settings. want figure out how turn off compression. here's have far: 'opens surfer objsurferapp = createobject("surfer.application") 'open powerpoint objpptapp = createobject("powerpoint.application") objpptmapseries = objpptapp.presentations.add 'copies image surfer objsurfermap.shapes.selectall() objsurfermap.selection.copy() ...