How does the following statements work?
On Error Goto 0
Answer Posted / mudit kumar bachhawat
whenever we handle any error then in error it performs its given tasks
for eg:
on error goto abc
msgbox day("abc")
exit sub
abc:
msgbox "Error"
this will message box on error
but in On error goto 0 is used to raise again error in VB
for eg
sub form_load
on error resume next
msgbox day("ABC")
on error goto 0
msgbox day("BBB")
end sub
this will raise error in "msgbox day("BBB")" line
Thank u
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Is there any Edit method in ADO Data Access method?
what are the Types of LockEdits in RDO?
Binary Access-method isused to access file in which manner?
How would you activate animation control?
What language does visual basic use?
___,__,___ are the type of combo box?
What is data binding in vb net?
Scope of API's can be of types, what are they?
which property is used to change to some value to access a identity column in datacontrols?
What is hyperlink?
What is a toolbox in visual basic?
i want to retrive data from one spead sheet to another UI (workbook). control will search cell by cell for each row and load the data in another workbook(UI).
What is the default workspace?
How many ways you can access file using VB?
How many ways we can access file using VB?