What is Immediate window,local window& Watch window?

Showing Answers 1 - 12 of 12 Answers

lalita.p

  • Dec 9th, 2006
 

Immediate window:
Basically use to check out the syntex error in a code
ex

?command.commandtext

WatchIndow:To check the value of local variable.

  Was this answer useful?  Yes

fsuhail

  • Feb 16th, 2007
 

Immediate Window is a great place for you to modify data or to test the function during development. You can enter valid expression in the Immediate window, and VB will execute it. However, objects referenced outside the scope of current code execution will generate an error.Local Window enables you to see the value of every variable, and each member of all the objects which are in current scope.Watch Window enables you to monitor the value for a certain state. You might want the program execution to pause on an instruction that sets a certain date. You might want to set watch expression that cause VB to break when a variable changes its value or when an expression's value us True.

  Was this answer useful?  Yes

fsuhail

  • Feb 20th, 2007
 

Immediate Window is a great place for you to modify data or to test the function during development. You can enter valid expression in the Immediate window, and VB will execute it. However, objects referenced outside the scope of current code execution will generate an error.

Local Window enables you to see the value of every variable, and each member of all the objects which are in current scope.

Watch Window enables you to monitor the value for a certain state. You might want the program execution to pause on an instruction that sets a certain date. You might want to set watch expression that cause VB to break when a variable changes its value or when an expression's value us True.

  Was this answer useful?  Yes

missy

  • Feb 27th, 2017
 

These are windows that are used in debugging your application.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions