- ©«¤l
- 5923
- ¥DÃD
- 13
- ºëµØ
- 1
- ¿n¤À
- 5986
- ÂI¦W
- 0
- §@·~¨t²Î
- win10
- ³nÅ骩¥»
- Office 2010
- ¾\ŪÅv
- 150
- ©Ê§O
- ¨k
- ¨Ó¦Û
- ¥xÆW°ò¶©
- µù¥U®É¶¡
- 2010-5-1
- ³Ì«áµn¿ý
- 2022-1-23
        
|
¥»©«³Ì«á¥Ñ GBKEE ©ó 2012-12-12 11:24 ½s¿è
¦^´_ 1# whirlwind963 - Option Explicit
- Sub Ex()
- Dim j As Integer, MyPath As String
- j = 2
- MyPath = "C:\My Pictures\"
- While Cells(j, "C") <> ""
- If UCase(Cells(j, "C")) Like "*ABCD*" Then '¦r¦ê¤¤¦³"ABCD"
- 'UCase ¨ç¼Æ ¶Ç¦^¤@Ó Variant (String)¡A©Ò§t¬°Âন¤j¼g¤§¦r¦ê¡C
- Cells(j, "D").Select
- If Dir(MyPath & Cells(j, "C")) <> "" Then
- With ActiveSheet.Pictures.Insert(MyPath & Cells(j, "C"))
- ' .ShapeRange.LockAspectRatio = msoTrue
- ' ¦b½Õ¾ã¹Ï®×¤j¤p®É¡A¥i¥H¤À§O¦a½Õ¾ã¹Ï®×ªºªø«×©M¼e«×
- .ShapeRange.LockAspectRatio = msoFalse
- .ShapeRange.Height = 100
- .ShapeRange.Width = 200,
- .ShapeRange.Rotation = 0
- .Placement = xlMoveAndSize
- .PrintObject = True
- End With
- End If
- End If
- j = j + 1
- Wend
- Range("C2").Select
- End Sub
½Æ»s¥N½X |
|