Board logo

標題: 如何在EXCEL 2010版 插入整個資料夾的圖片 [打印本頁]

作者: ricky1019    時間: 2012-3-31 16:33     標題: 如何在EXCEL 2010版 插入整個資料夾的圖片

各位大大:
在EXCEL 2003版 可以執行插入整個資料夾的圖片, 但在EXCEL 2010已無法執行, 要如何改寫呢? 謝謝幫忙!

Sub PictureResize()
Application.ScreenUpdating = False
Dim p As Object
Dim i%, k&, h&
With Application.FileSearch
    .LookIn = "D:\my Documents\My Pictures"  '資料夾自己設
    .FileType = msoFileTypeAllFiles
    .Filename = "*.jpg"
    .Execute

    If .Execute() > 0 Then
        For i = 1 To .FoundFiles.Count
          Set p = ActiveSheet.Pictures.Insert(.FoundFiles(i))
          p.Left = Cells(i, 1).Left
          p.Top = Cells(i, 1).Top
          p.Width = Cells(i, 1).Width
          p.Height = Cells(i, 1).RowHeight
        Next
    End If
End With
Set p = Nothing
Application.ScreenUpdating = True
End Sub
作者: Hsieh    時間: 2012-3-31 17:19

回復 1# ricky1019

http://forum.twbts.com/thread-5850-1-7.html
作者: ricky1019    時間: 2012-4-1 21:26

謝謝提供寶貴資料。




歡迎光臨 麻辣家族討論版版 (http://forum.twbts.com/)