投稿者 魔界の仮面弁士  (社会人) 投稿日時 2019/5/16 12:20:17
> ※教えてgooの方にも投稿しました。アドバイスを頂いて試してみたのですが解決には至っておりません。https://oshiete.goo.ne.jp/mypage/history/question/

上記の URL だとたどり着けませんでした。
下記でしょうか?
https://oshiete.goo.ne.jp/qa/11111481.html


ちなみに VB2017 では文字列中に改行を含めることができますので、
 txtHtml &= 追加文字列 & vbCrLf
を繰り返さずにまとめて表記することも可能です。(既にご存知かもしれませんが)

        Dim txtHTML As String

#Region "txtHTML への代入"
        txtHTML = 
"<!doctype html>
<html lang='ja'> 
<head>
    <meta charset='utf-8'/> 
    <link rel=""stylesheet"" href=""https://cdn.rawgit.com/openlayers/openlayers.github.io/master/en/v5.3.0/css/ol.css"" type=""text/css"">
    <script src=""https://cdn.rawgit.com/openlayers/openlayers.github.io/master/en/v5.3.0/build/ol.js""></script>
"
#End Region