溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

VB.NET中怎么導(dǎo)出數(shù)據(jù)

發(fā)布時間:2021-08-06 15:40:51 來源:億速云 閱讀:190 作者:Leah 欄目:編程語言

這篇文章將為大家詳細(xì)講解有關(guān)VB.NET中怎么導(dǎo)出數(shù)據(jù),文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關(guān)知識有一定的了解。

 VB.NET開發(fā)語言為我們平時的開發(fā)方式帶來了非常的改變。很多時候可以利用Excel的數(shù)據(jù)透視表導(dǎo)出你想要的報表格式。那么VB.NET導(dǎo)出數(shù)據(jù)該如何實(shí)現(xiàn)呢?下面的代碼可以從數(shù)據(jù)庫中取出數(shù)據(jù)然后導(dǎo)入Excel。

  1. Dim excel As Excel.Application  

  2. Dim xBk As Excel._Workbook  

  3. Dim xSt As Excel._Worksheet  

  4. Dim xRange As Excel.Range  

  5. Dim xPivotCache As Excel.
    PivotCache  

  6. Dim xPivotTable As Excel.
    PivotTable  

  7. Dim xPivotField As Excel.
    PivotField  

  8. Dim cnnsr As String, sql 
    As String  

  9. Dim RowFields() As String = 
    {"", "", ""}  

  10. Dim PageFields() As String = 
    {"", "", "", "", "", ""}  

  11. 'SERVER 是服務(wù)器名或服務(wù)器的IP地址  

  12. 'DATABASE 是數(shù)據(jù)庫名  

  13. 'Table 是表名  

  14. Try 

開始實(shí)現(xiàn)VB.NET導(dǎo)出數(shù)據(jù)

  1. cnnsr = "ODBC;DRIVER=SQL 
    Server;SERVER=" + SERVER   

  2. cnnsrcnnsr = cnnsr + ";UID=;
    APP=Report Tools;WSID=ReportClient;
    DATABASE=" + DATABASE  

  3. cnnsrcnnsr = cnnsr + ";
    Trusted_Connection=Yes"  

  4. excel = New Excel.ApplicationClass  

  5. xBk = excel.Workbooks.Add(True)  

  6. xSt = xBk.ActiveSheet  

  7. xRange = xSt.Range("A4")  

  8. xRange.Select() 

開始

  1. xPivotCache = xBk.PivotCaches
    .Add(SourceType:=2)  

  2. xPivotCache.Connection = cnnsr 

  3. xPivotCache.CommandType = 2 

  4. sql = "select * from " + Table  

  5. xPivotCache.CommandText = sql 

  6. xPivotTable = xPivotCache.
    CreatePivotTable(TableDestination:
    ="Sheet1!R3C1", TableName:=
    "數(shù)據(jù)透視表1", DefaultVersion:=1) 

準(zhǔn)備行字段

RowFields(0) = "字段1"  RowFields(1) = "字段2"  RowFields(2) = "字段3"

準(zhǔn)備頁面字段

  1. PageFields(0) = "字段4"  

  2. PageFields(1) = "字段5"  

  3. PageFields(2) = "字段6"  

  4. PageFields(3) = "字段7"  

  5. PageFields(4) = "字段8"  

  6. PageFields(5) = "字段9"  

  7. xPivotTable.AddFields(RowFields
    RowFields:=RowFields, PageFields
    PageFields:=PageFields)  

  8. xPivotField = xPivotTable.
    PivotFields("數(shù)量")  

  9. xPivotField.Orientation = 4 

關(guān)閉工具條

  1. 'xBk.ShowPivotTableFieldList
     = False 

  2. 'excel.CommandBars("PivotTable")
    .visible = False 

  3. excel.Visible = True 

  4. Catch ex As Exception  

  5. If cnn.State = ConnectionState
    .Open Then  

  6. cnn.Close()  

  7. End If  

  8. xBk.Close(0)  

  9. excel.Quit()  

  10. MessageBox.Show(ex.Message,
     "報表工具", MessageBoxButtons.
    OK, MessageBoxIcon.Warning)  

  11. End Try 

關(guān)于VB.NET中怎么導(dǎo)出數(shù)據(jù)就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI