VB循环和Excel

时间:2012-06-27 16:58:00

标签: visual-studio-2010 excel pdf

我在vb中编写,并使用excels参数将.xls文档转换为pdf。这个过程很好,因为我使用的是字符串。我需要知道的是以某种方式遍历源文件夹,然后将该文件夹中的所有文件转换为pdf并放入导出文件夹中保留原始文件名。尽管我知道你需要它来为这个行业奠定坚实的基础,但是循环仍然是我在编程中存在的祸根。

实施例

    Dim excelApplication As ApplicationClass = New ApplicationClass()
    Dim excelWorkbook As Workbook = Nothing
    Dim paramSourceBookPath As String = "C:\My_Projects\Testing\filename.xls"
    Dim paramExportFilePath As String = "C:\My_Projects\Testing\filename.pdf"

提前致谢。

1 个答案:

答案 0 :(得分:0)

试试这个:

    Dim dir As New IO.DirectoryInfo(path)
    Dim files As IO.FileInfo() = dir.GetFiles("*.xls")
    For Each file In files
        'Do Something
    Next