gpt4 book ai didi

excel - 使用 Excel 宏截取屏幕截图

转载 作者:行者123 更新时间:2023-12-04 21:54:42 25 4
gpt4 key购买 nike

Sub google()
Set objIE = CreateObject("InternetExplorer.Application")
WebSite = "www.google.com"
With objIE
.Visible = True
.navigate WebSite
Do While .Busy Or .readyState <> 4
Application.SendKeys "({1068})", True
DoEvents
Loop
AppActivate "Internet Explorer"
ActiveSheet.Paste

Dim shp As Shape
With ActiveSheet
Set shp = .Shapes(.Shapes.Count)
End With
shp.Height = 600
shp.Width = 800
.Document.Forms(0).Submit
'.Quit
End With
End Sub

我正在使用此代码使用 Excel VBA 宏截取屏幕截图。但是,此代码正在截取我的整个屏幕的屏幕截图。我需要一个网页的截图。有人可以帮我弄这个吗?

最佳答案

PrtSc 截取整个桌面的屏幕截图。要截取当前应用程序窗口的屏幕截图,请使用 Alt+PrtSc。

Application.SendKeys "%{1068}", True

关于excel - 使用 Excel 宏截取屏幕截图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47261664/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com