ถามวิธีใช้ On Error GoTo line
Posted: Thu Apr 17, 2014 12:23 pm
ถามวิธีใช้ On Error GoTo line ครับ ขอบคุณครับ
ฟอรัม Excel, VBA และอื่นๆ ของคนไทยเพื่อประโยชน์ของทุกคนในจักรวาล (Forum Excel, VBA and others of Thai people for everyone in the universe.)
http://snasui.com/
ใช้ On Error GoTo ErrorHandler แทนดูครับsomkiatfem wrote:ถามวิธีใช้ On Error GoTo line ครับ ขอบคุณครับ
Code: Select all
Public Sub InitializeMatrix(ByVal Var1 As Object, ByVal Var2 As Object)
On Error GoTo ErrorHandler
' Insert code that might generate an error here
Exit Sub
ErrorHandler:
' Insert code to handle the error here
Resume Next
End Sub
หมายความว่า ถ้าหากเจอเออร์เรอร์ เราจะให้โปรแกรมทำอะไรต่อไป เช่น แสดง msgbox หรือ Exit Sub เป็นต้นsomkiatfem wrote:ไม่เข้าใจตรงนี้นะครับ รบกวนด้วยครับ
ErrorHandler:
' Insert code to handle the error here
Resume Next