How does the following statements work?
On Error Goto 0
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / saru
on error goto om
msbox("This line has error") ' if this statement has
error
msgbox("This line has error") ' if this statement has error
om:
msgbox("An error has occured")
| Is This Answer Correct ? | 1 Yes | 1 No |
how a multiple routing works ?
Clear property is available in ____,___ control.
Why visual basic is used?
How do I add a form in visual basic?
Timer control contains ________ no. of events.
What is activex control in vb?
How do I change the color of a form in visual basic?
How do you change the icon and otherwise manipulate the DOS box?
What is the use of command Object?What are the various types of variables?
Can you create a Updatecascade, Deletecascade relation in Ms- Access?
What is a variant data type and when would you use it?
It possible to call OLEDB's Features directly in VB without using any control?
Visual Basic (800)
C Sharp (3816)
ASP.NET (3180)
VB.NET (461)
COM+ (79)
ADO.NET (717)
IIS (369)
MTS (11)
Crystal Reports (81)
BizTalk (89)
Dot Net (2435)
Exchange Server (362)
SharePoint (720)
WCF (340)
MS Office Microsoft (6963)
LINQ Language-Integrated Query (317)
WPF (371)
TypeScript (144)
Microsoft Related AllOther (311)