Computer Science, asked by shradhajha0609, 1 year ago

which command is used to terminate the application in Visual Basic 2008

Answers

Answered by AnubhavRana
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.
Similar questions