我是VBA和html的新手,我越來越困惑。如何將html連接成VBA中的字符串?
我想設置一個字符串變量等於幾個連接的html字符串和控制值。我無法弄清楚我做錯了什麼。
這裏是我的代碼:
htmlText = "<HTML><BODY bgcolor=#0b3767> <img height=""71"" width=""500"" alt=""Central Analysis Bureau, Inc. - Know Your Insureds"" src=""http://cabfinancial.com/images/logoEmail.png"">"_
& "<a href=" & txtLink.Value & ">Volume " & txtVolume.Value & " Edition " & txtEdition.Value _
& "</a>" _
& txtHtml.Value & "<a href=""txtLink.Value"">Click here to read the complete article</a>" _
& "</BODY></HTML>"
htmlText都將是一個字符串。 txtLink,txtVolume,txtEdition,txtHtml都是窗體上的文本框控件。
你想達到什麼目的?什麼讓你感到困惑? – Oded 2009-12-15 15:49:06
那你到底遇到了什麼問題?我在代碼中看到的唯一明顯問題是,在第一行末尾的下劃線之前沒有空格。 – JohnFx 2009-12-15 15:53:10