Microsoft Access - Web 浏览器 ActiveX 控件 - 仅显示一个 DIV
好的,我在 Access 表单上有一个 ActiveX Web 浏览器控件。
我使用以下代码将 url 加载到该控件中:
Dim webMain As Object
Set webMain = Me.WebBrowser2.Object
webMain.Navigate "http://stackoverflow.com"
但是,该页面有多个 DIV,而我只想显示一个。
谢谢
约翰
Ok, I have an ActiveX web browser control on an Access form.
I am loading a url into this control using the following code:
Dim webMain As Object
Set webMain = Me.WebBrowser2.Object
webMain.Navigate "http://stackoverflow.com"
However, this page has multiple DIV's and I only want to show one.
Thanks
John
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
来自你的评论
那么为什么要费心向他们显示 HTML呢?只需使用 Unbounded 控件收集 Access 表单上的数据,然后使用
MSXML2.ServerXMLHTTP
或WinHttp.WinHttpRequest.5.1
自行发布 HTTP 表单。有关示例,请参阅 如何使用 VBA 从 Excel 向服务器发送 HTTP POST 请求?
From your comment
Well why bother with displaying HTML to them at all. Just collect the data on your Access form with Unbounded controls and POST the HTTP form yourself using
MSXML2.ServerXMLHTTP
orWinHttp.WinHttpRequest.5.1
For a sample see How can I send an HTTP POST request to a server from Excel using VBA?