How to convert excel cell to html? -


i've got excel cell contains html content this:

what <b>the</b> answer <i>this</i> question?  see table <table><tr><td>.... 

you idea. it's cell intensive purposes contains webpage.

i able view cell's content after interpreted browser in way. thinking microsoft web control ideal, i'm not quite sure how go setting actual html of web control. can navigate web pages, i'm not sure how set html equal cell's value.

any ideas?

with embedded "microsoft web browser" activex control named "wbtest" on worksheet:

(code in worksheet module)

sub testhtml()     showhtml me.range("a1").value end sub   sub showhtml(s string)     me.wbtest         .document.open "text/html"         .document.write s         .document.close     end end sub 

Comments

Popular posts from this blog

c# - Binding a comma separated list to a List<int> in asp.net web api -

Delphi 7 and decode UTF-8 base64 -

html - Is there any way to exclude a single element from the style? (Bootstrap) -