Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


How does the following statements work?

On Error Goto 0

Answers were Sorted based on User's Feedback



How does the following statements work? On Error Goto 0..

Answer / sujitha

To Disable any enabled error .

Is This Answer Correct ?    4 Yes 1 No

How does the following statements work? On Error Goto 0..

Answer / guest

control switches to same statement again

Is This Answer Correct ?    2 Yes 1 No

How does the following statements work? On Error Goto 0..

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

How does the following statements work? On Error Goto 0..

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

Post New Answer

More Visual Basic Interview Questions

How does VB Pass arguments to a function by default?

2 Answers  


I want to develop a stand alone application which can communicate with the existing applications in the system. On which this application should be based on: Standard Exe, Active-X Exe, Active-X Dll.

2 Answers  


what are the Differenct Types of Procedures in VB?

0 Answers  


What is the difference between Single and Double in VB?

4 Answers  


Does VB Supports OOPS Concepts? Explain..

4 Answers  


Can you create a tabletype of recordset in Jet connected ODBC dbengine.

0 Answers  


Scope of API's can be of types, what are they?

0 Answers  


Is it possible to call backend procedures with ADO control?

1 Answers   TCS,


What are the different types of Dialog Box?

2 Answers   Apollo, ATTC,


What type of databases you can access through AD I Data Access Object?

1 Answers  


CONNECTIVITY OF SQL 2000 + VB USING ODBC. steps i Follow- 1) Go to Control panel-->Admintrative Tools-->Double -click Data sources(ODBC)-->click Add button-->I choose SQL server (last option), Is it right or wrong option for connecting to SQL 2000.Then a new screen appears Create a New dataSource-->in name textbox,we can write anyname--Right or wrong. suppose i enter sonia, & my server name is .,so I enter . in server & click next button-->On the Next screen i have checked the option With Sql server authentication-- >Login Id-sa, Password-->Blank-->Click next button-->Next-- >Finish-->Then I click on button Test Data source-->Mesage Comes TESTS COMPLETED SUCCESSFULLY-->OK-->OK-->Ok. These steps we have to do or not for Connectivity using ODBC. If yes,then what after these steps we have to do??Plz reply me early ??Thx in advance.

6 Answers  


How do you clear the current selected item from a drop down combo box?

2 Answers  


Categories