Page 1 of 1

ถามวิธีใช้ On Error GoTo line

Posted: Thu Apr 17, 2014 12:23 pm
by somkiatfem
ถามวิธีใช้ On Error GoTo line ครับ ขอบคุณครับ

Re: ถามวิธีใช้ On Error GoTo line

Posted: Thu Apr 17, 2014 3:14 pm
by bank9597
somkiatfem wrote:ถามวิธีใช้ On Error GoTo line ครับ ขอบคุณครับ
:D ใช้ On Error GoTo ErrorHandler แทนดูครับ

ตัวอย่างโค๊ด

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

Re: ถามวิธีใช้ On Error GoTo line

Posted: Thu Apr 17, 2014 7:27 pm
by somkiatfem
ไม่เข้าใจตรงนี้นะครับ รบกวนด้วยครับ

ErrorHandler:
' Insert code to handle the error here
Resume Next

Re: ถามวิธีใช้ On Error GoTo line

Posted: Fri Apr 18, 2014 10:19 am
by bank9597
somkiatfem wrote:ไม่เข้าใจตรงนี้นะครับ รบกวนด้วยครับ

ErrorHandler:
' Insert code to handle the error here
Resume Next
หมายความว่า ถ้าหากเจอเออร์เรอร์ เราจะให้โปรแกรมทำอะไรต่อไป เช่น แสดง msgbox หรือ Exit Sub เป็นต้น