Visual Basic 使用 Excel Sheet
VB 支持 Microsoft Excel 2010 的 COM 对象模型与应用程序之间的互操作性。
要在应用程序中利用这种互操作性,需要在应用程序中导入名称空间 Microsoft.Office.Interop.Excel。
创建 Excel 应用程序
让我们首先在 Microsoft Visual Studio 中按照以下步骤创建窗口窗体应用程序:File → New Project → Windows Forms Applications
最终, 选择 OK, Microsoft Visual Studio 创建您的项目并显示以下 Form1。
向窗体插入一个按钮 Button1。
将对 Microsoft Excel 对象库的引用添加到项目中。操作如下:
- 在 Project 目录中选择 Add Reference 添加引用。

- 在 COM 选项下, 找到 Microsoft Excel Object Library 然后选择它。

- 点击 OK.
双击代码窗口并填充 Button1 的 click 事件,如下所示:
' Add the following code snippet on top of Form1.vbImports Excel = Microsoft.Office.Interop.ExcelPublic Class Form1Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.ClickDim appXL As Excel.ApplicationDim wbXl As Excel.WorkbookDim shXL As Excel.WorksheetDim raXL As Excel.Range' Start Excel and get Application object.appXL = CreateObject("Excel.Application")appXL.Visible = True' Add a new workbook.wbXl = appXL.Workbooks.AddshXL = wbXl.ActiveSheet' Add table headers going cell by cell.shXL.Cells(1, 1).Value = "First Name"shXL.Cells(1, 2).Value = "Last Name"shXL.Cells(1, 3).Value = "Full Name"shXL.Cells(1, 4).Value = "Specialization"' Format A1:D1 as bold, vertical alignment = center.With shXL.Range("A1", "D1").Font.Bold = True.VerticalAlignment = Excel.XlVAlign.xlVAlignCenterEnd With' Create an array to set multiple values at once.Dim students(5, 2) As Stringstudents(0, 0) = "Zara"students(0, 1) = "Ali"students(1, 0) = "Nuha"students(1, 1) = "Ali"students(2, 0) = "Arilia"students(2, 1) = "RamKumar"students(3, 0) = "Rita"students(3, 1) = "Jones"students(4, 0) = "Umme"students(4, 1) = "Ayman"' Fill A2:B6 with an array of values (First and Last Names).shXL.Range("A2", "B6").Value = students' Fill C2:C6 with a relative formula (=A2 & " " & B2).raXL = shXL.Range("C2", "C6")raXL.Formula = "=A2 & "" "" & B2"' Fill D2:D6 values.With shXL.Cells(2, 4).Value = "Biology".Cells(3, 4).Value = "Mathmematics".Cells(4, 4).Value = "Physics".Cells(5, 4).Value = "Mathmematics".Cells(6, 4).Value = "Arabic"End With' AutoFit columns A:D.raXL = shXL.Range("A1", "D1")raXL.EntireColumn.AutoFit()' Make sure Excel is visible and give the user control' of Excel's lifetime.appXL.Visible = TrueappXL.UserControl = True' Release object references.raXL = NothingshXL = NothingwbXl = NothingappXL.Quit()appXL = NothingExit SubErr_Handler:MsgBox(Err.Description, vbCritical, "Error: " & Err.Number)End SubEnd Class
当使用 Microsoft Visual Studio 工具栏上的 开始 按钮执行并运行上述代码时,它将显示以下窗口:

单击按钮将显示以下 excel 工作表。系统将要求您保存工作簿。
