EXCEL TOOLS
Excel Add-ins ที่พัฒนาโดยคุณสันติพงศ์ ณสุย (MVP Excel 2010-2020) ด้วยภาษา C# เพื่อแก้ไขปัญหาไฟล์ใหญ่ คำนวณนาน ทำงานช้า จัดการข้อมูลต่าง ๆ ที่ทำงานประจำวันได้อย่างสะดวกรวดเร็ว สนใจคลิกไปดูได้ที่นี่ครับ => Excel Tools
Excel Add-ins ที่พัฒนาโดยคุณสันติพงศ์ ณสุย (MVP Excel 2010-2020) ด้วยภาษา C# เพื่อแก้ไขปัญหาไฟล์ใหญ่ คำนวณนาน ทำงานช้า จัดการข้อมูลต่าง ๆ ที่ทำงานประจำวันได้อย่างสะดวกรวดเร็ว สนใจคลิกไปดูได้ที่นี่ครับ => Excel Tools
[code]
และปิดด้วย [/code]
ตัวอย่างเช่น [code]dim r as range[/code]
เพื่อให้แตกต่างจากข้อความทั่วไป สะดวกในการอ่านและทดสอบ (คลิกเพื่อดูตัวอย่าง)Code: Select all
Sub insertpicture2()
Dim student_pic As Picture
Dim pic_location As String
Dim student_name As String
For i = 2 To 11
student_name = Worksheets("sheet5").Cells(i, 2).Value
pic_location = "C:\Picture\" & Worksheets("sheet5").Cells(i, 2).Value & ".jpg"
With Worksheets("sheet5").Cells(i, 3).Value
Set student_pic = ActiveSheet.Pictures.Insert(pic_location)
End With
Next i
'Worksheets("sheet5").Cells(i, 1).Select
End Sub
Code: Select all
Sub insertpicture2()
Dim student_pic As Object
Dim pic_location As String
Dim student_name As String
Dim picPath As String
picPath = "C:\Picture\"
With Worksheets("Sheet5")
For i = 2 To 11
student_name = .Cells(i, 2).Value
pic_location = picPath & student_name & ".jpg"
With .Cells(i, 3)
.Activate
Set student_pic = .Parent.Shapes.AddPicture( _
Filename:=pic_location, _
linktofile:=False, _
savewithdocument:=True, _
Left:=.Left, _
Top:=.Top, _
Width:=.Width, _
Height:=.Height)
End With
Next i
End With
'Worksheets("sheet5").Cells(i, 1).Select
End Sub