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
Dim i As Long
Private Sub cmbNext_Click()
i = i + 1
fPath = ThisWorkbook.Path & "\"
Range("F3").Select
ActiveCell.End(xlDown).Select
Lastrow = ActiveCell.Row
currentrow = Range("f2").Row + i
If currentrow = Lastrow + 1 Then
currentrow = Lastrow
MsgBox "ลำดับสุดท้ายแล้วครับ...! / You have reached the last row!"
End If
With Cells(currentrow, 1)
TxtFirstName.Text = Cells(currentrow, 6).Value
Set NameFound = .Find(TxtFirstName.Text)
With NameFound
On Error Resume Next
ImgData.Picture = LoadPicture(fPath & "nopic.jpg")
ImgData.Picture = LoadPicture(fPath & TxtFirstName.Text & ".jpg")
End With
End With
TxtFirstName.Text = Cells(currentrow, 6).Value
End Sub