which command is used to terminate the application in Visual Basic 2008
Answers
Answered by
8
The Visual Basic command that is used to close a window and terminate a program executes a built-in Close () procedure that actually executes the command. The statement to access the Close () procedure is Me.Close ()where Me is the reference to the form object.
When the above statement is executed, the prewritten statements in the procedure get executed that in turn closes the window and terminates the program.
When the above statement is executed, the prewritten statements in the procedure get executed that in turn closes the window and terminates the program.
Similar questions