注册 登录
编程论坛 VB.NET论坛

求助,如何逐行读取excel表中的信息?

jallayzhang 发布于 2018-05-21 11:25, 1932 次点击
各位大神,请教一个问题。VB2010如何对excel进行逐行读取?


        AppXls = New Microsoft.Office.Interop.Excel.Application     '实例化Excel对象
        AppXls.Workbooks.Open(TuikaExcel)                           '打开已经存在的EXCEL文件
        AppXls.Visible = True                                       '使Excel不可见
        AppWokBook = AppXls.Workbooks(1)                        'AppWokBook对象指向工作簿"*:\*.xls"
        AppSheet = AppWokBook.Sheets(1)                          'AppSheet对象指向AppWokBook对象中的表“Sheet3”,即:"*:\*.xls"中的表“Sheet3”

        index1 = IO.File.ReadAllText(indexFile, System.Text.Encoding.Default)
        x = x + index1

        Dim intlastcolnum = AppSheet.UsedRange.Columns.Count
        Dim intlastrownum = AppSheet.UsedRange.Rows.Count
1 回复
#2
厨师王德榜2018-05-24 22:04
用一个双循环结构可以读出来。
for irow =1 to intlastrownum  
    for icol =1 to intlastcolnum
        msgbox AppSheet.cells(irow,icol)
    next icol
next irow



[此贴子已经被作者于2018-5-24 22:05编辑过]

1