简体   繁体   English

VBScript激活不带URL的打开的Excel电子表格

[英]VBScript Activate open Excel spreadsheet without URL

I have a project where the application will be used for multiple spreadsheets and naming formats are always going to be different. 我有一个项目,该应用程序将用于多个电子表格,并且命名格式始终会有所不同。 They want me to use File → Open from the menu to open a window where they select the spreadsheet from their desktop. 他们希望我使用菜单中的“ 文件”→“打开 ”来打开一个窗口,他们可以从桌面上选择电子表格。 I've got the VBScript code for that, but I can't activate the workbook to gather, or enter, data. 我已经有了VBScript代码,但是无法激活工作簿来收集或输入数据。

WShell.SendKeys "%FO"

objExcel.Wait (Now + TimeSerial(0, 0, 3))

For i = 1 to 3
   WShell.SendKeys "+{TAB}"
Next

WShell.SendKeys "{HOME}"
WShell.SendKeys "D"
WShell.SendKeys "{ENTER}"

MsgBox "Please select the file you want to open, then click OK to continue.", _
    vbOKOnly+vbSystemModal, "Open File"

WShell.SendKeys "{ENTER}"

Set objWorkbook = ThisWorkbook

objWorkbook.Sheets(1).Activate
objWorkbook.Sheets(1).Cells(1, 1).Value = "Hello"

I want Set objWorkbook = ThisWorkbook to activate the current workbook without having to use its name or URL. 我希望Set objWorkbook = ThisWorkbook可以激活当前工作簿,而不必使用其名称或URL。 Can someone help me with this? 有人可以帮我弄这个吗?

I figured out how to get it to work. 我想出了如何使其工作。 I needed to cycle through any open Excel spreadsheets to see if the one I just opened was available. 我需要浏览所有打开的Excel电子表格,以查看我刚刚打开的电子表格是否可用。 NOTE: This only works for one spreadsheet open, which is the one opened by the Open dialog box. 注意:这仅适用于打开一个电子表格,这是“打开”对话框打开的电子表格。

WShell.SendKeys "%FO"

objExcel.Wait (Now + TimeSerial(0, 0, 3))

For i = 1 to 3
    WShell.SendKeys "+{TAB}"
Next

WShell.SendKeys "{HOME}"
WShell.SendKeys "D"
WShell.SendKeys "{ENTER}"

MsgBox "Please select the file you want to open, then click OK to continue.", _
vbOKOnly+vbSystemModal, "Open File"

WShell.SendKeys "{ENTER}"

On Error Resume Next
   Set objExcel = GetObject(,"Excel.Application")
   If Err.Number <> 0 Then ShowError ("Macro failed to get Excel object.")
On Error GoTo 0

objExcel.Wait (Now + TimeSerial(0, 0, 1))

For Each WB In objExcel.Workbooks
    Set objWorkbook = WB
Next

objWorkbook.Sheets(1).Activate
objWorkbook.Sheets(1).Cells(1, 1).Value = "Hello"

This will take the open spreadsheet and enter "Hello" in cell A1. 这将使用打开的电子表格,并在单元格A1中输入“ Hello”。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM