プロジェクトでユーザーがボタンをクリックすると、一部のデータが取得され、相互運用ライブラリによって Excel インスタンスに書き込まれます。
今、私はそれをしたい: Excel インスタンスがすべてのデータを取得したら、[名前を付けて保存] ダイアログ ボックスを開いて、この Excel インスタンスをユーザー指定のパスに保存する必要があります。
それを行う方法はありますか?
編集:
データをExcelに取得するための私のコードは次のとおりです。
Public Sub ExportToExcel(ByVal dt As DataTable, ByVal outputPath As String)
' Create the Excel Application object
Dim excelApp As New Microsoft.Office.Interop.Excel.ApplicationClass
' Create a new Excel Workbook
Dim excelWorkbook As Excel.Workbook = excelApp.Workbooks.Add(Type.Missing)
Dim excelSheet As Excel.Worksheet = excelWorkbook.Worksheets(1)
excelApp.Visible = True
' Copy each DataTable as a new Sheet
'sheetIndex += 1
'' Create a new Sheet
'excelSheet = CType( _
' excelWorkbook.Sheets.Add(excelWorkbook.Sheets(sheetIndex), _
' Type.Missing, 1, Microsoft.Office.Interop.Excel.XlSheetType.xlWorksheet), Microsoft.Office.Interop.Excel.Worksheet)
excelSheet.Name = "Bayi"
' Copy the column names (cell-by-cell)
For col = 0 To dt.Columns.Count - 1
excelSheet.Cells(1, col + 1) = dt.Columns(col).ColumnName
Next
CType(excelSheet.Rows(1, Type.Missing), Microsoft.Office.Interop.Excel.Range).Font.Bold = True
' Copy the values (cell-by-cell)
For col = 0 To dt.Columns.Count - 1
For row = 0 To dt.Rows.Count - 1
excelSheet.Cells(row + 2, col + 1) = dt.Rows(row).ItemArray(col)
Next
Next
excelSheet = Nothing
' Save and Close the Workbook
excelWorkbook.SaveAs(outputPath, Microsoft.Office.Interop.Excel.XlFileFormat.xlWorkbookNormal, Type.Missing, _
Type.Missing, Type.Missing, Type.Missing, Microsoft.Office.Interop.Excel.XlSaveAsAccessMode.xlExclusive, _
Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing)
excelWorkbook.Close(True, Type.Missing, Type.Missing)
excelWorkbook = Nothing
' Release the Application object
excelApp.Quit()
excelApp = Nothing
' Collect the unreferenced objects
GC.Collect()
GC.WaitForPendingFinalizers()
End Sub