View Single Post

  #2 (permalink)  
Old 07-03-2008, 08:27 PM
samurai-logic samurai-logic is offline
Junior Member
 
Join Date: Jul 2008
Posts: 3
Thumbs up use WebBrowser in UserForm

hello, i'm replying old question, however Excel is very usefull to edit svg and also you can view svg file on webBrowser(need to add ctrl. and also need svg plug-in on IE)

use Navigate procedure on webBrowser class as follow,

sub commandbutton_click()
dim path$

path=thisworkbook.path ''---assume svg file is in same folder

WebBrowser1.Navigate path & "Filename.svg" ''<---change the name of file

end sub
Reply With Quote