Open Internet Explorer with embedded PDF -


i launching ie variable, opens pdf document embedded within ie. unfortunately, keep getting prompt open/save/cancel. want pdf load in ie. created batch file works, need use vbs hide address bar (do not want work kiosk mode ie through batch file.

i run vb script follows:

>test.vbs 123 

my code then:

set oie1 = wscript.createobject ("internetexplorer.application")  acc=wscript.arguments(0)  oie1.navigate "http://somplace/" & acc oie1.visible = 1 oie1.addressbar = 0 oie1.statusbar = 0 oie1.toolbar = 0 oie1.menubar = 0 

but when ie opens, save/open/cancel prompt must answer, , pdf opens in adobe reader. want open within ie.

take @ link adobe's website. explains adobe reader settings may need change in order pdf's load within internet explorer , other browsers.

http://helpx.adobe.com/acrobat/using/display-pdf-browser-acrobat-xi.html

also, in adobe reader's preferences (edit->preferences), click internet page. there options here control how pdf's viewed in browser.


Comments

Popular posts from this blog

javascript - jquery or ashx not working -

opencv - DataType<cv::detail::deriv_type>::depth what is it used for -

python 3.x - Mapping specific letters onto a list of words -