- ©«¤l
- 262
- ¥DÃD
- 8
- ºëµØ
- 0
- ¿n¤À
- 280
- ÂI¦W
- 16
- §@·~¨t²Î
- xp
- ³nÅ骩¥»
- Office 2007
- ¾\ŪÅv
- 20
- ©Ê§O
- ¨k
- ¨Ó¦Û
- HK
- µù¥U®É¶¡
- 2015-8-11
- ³Ì«áµn¿ý
- 2024-10-26
|
- Sub zz()
- Dim p, pic, pn$, Newpic As Object, k
- With Application.FileDialog(msoFileDialogFolderPicker)
- .Title = "Select the images folder"
- .Show
- If .SelectedItems.Count Then p = .SelectedItems(1) & "\" Else Exit Sub
- End With
- Sheets(2).Activate
- pic = Dir(p & "*.jpg")
- Do While Len(pic) > 0
- pn = Mid(Split(pic, ".")(0), 3)
- k = Split(pn, "-")
- pn = Format(k(0), "0000") & "-" & k(1)
- Set Rng = Cells.Find(pn)
- If Rng Is Nothing Then MsgBox "No picture " & pic: GoTo 1000
- Set Rng = Range(Rng.MergeArea.Address)
- For Each op In ActiveSheet.Pictures
- If Not Application.Intersect(Rng, op.TopLeftCell) Is Nothing Then op.Delete
- Next
- Set Newpic = ActiveSheet.Pictures.Insert(p & pic)
- With Newpic
- .ShapeRange.LockAspectRatio = msoFalse
- .Top = Rng.Top
- .Left = Rng.Left
- .Height = Rng.Height
- .Width = Rng.Width
- End With
- 1000
- pic = Dir
- Loop
- End Sub
½Æ»s¥N½X |
|