Properties". Klikk på " Referanser ", velg deretter "Legg til ". Velg " COM " og klikk " Microsoft Excel 12.0 Object Library. " Klikk "OK". Dobbeltklikk på " Button" på " Verktøy"- panelet for å legge til en ny knapp kontroll til " Form1 . " Dobbeltklikk på " Button1 " for å åpne " Form1.vb " modulen.
3 Trykk " Ctrl + A" og trykk "Delete " for å fjerne all kode . Kopier og lim inn følgende kode til din " Form1.vb " modulen.
4
Import Microsoft.Office.Interop
Public Class Form1
Private Sub button1_click ( ByVal avsenderen som System.Object , ByVal e Som System.EventArgs ) Håndtak Button1.Click
Dim ExcelApp som ny Excel.Application
ExcelApp.Visible = sant
Dim ExcelWbks som Excel.Workbooks = ExcelApp.Workbooks
Dim ExcelWbk som Excel.Workbook = ExcelWbks.Add
Dim ExcelShts som Excel.Sheets = ExcelWbk.Worksheets
Dim ExcelSht som Excel . . regneark = ExcelShts ( " Ark1 ")
ExcelSht.Range ( "A1" ) Verdi = " Dette er en Microsoft Excel Office 2007 -regneark "
ExcelSht.SaveAs ( "C : \\ my2007ExcelWorkbook.xlsx ")
End Sub
End Class
5
Trykk" F5 "for å kjøre programmet og klikk" Button1 "for å lage en Microsoft Office Excel 2007-arbeidsbok .