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
What about DLL calls that require callbacks?
___,___ and __ are difference between image and picture controls.
Explain about arrays?
DHTML Is used for what?
Is it possible to Manipulate data through flexgrid? Explain.
how to use telugu language in vb6? any unicode data is available for telugu or not?yes means how to use? my desired output is telugu only? i am doing project like(telugu calendar),my output should be print in telugu only? pls send me the solution with code?
What is recordset in visual basic?
How would you attach pictures in Treeview Control?
What is the Windows API?
How do you change the icon and otherwise manipulate the DOS box?
what are the types of LockEdits in DAO?
How can I speed up my VB database application?
Explain Types of DBCombo boxes?
Through which protocol OLEDB components are interfaced?
what is the control used to call a windows application.