What is the purpose of the Caption property of a command button?
the Caption property of a form? The Caption property of a command button determines what text will display in the command button on the form. The Caption property of a form determines the text that will appear in the forms title bar. 8. What does cmdPush_Click mean? To what does cmdPush refer? To what does Click refer? cmdPush_Click is the name of an event procedure. The name consists of the object name, cmdPush, an underscore ( _ ), and the name of the event, Click. cmdPush_Click would be the event that occurs when a user presses the left mouse button while pointing to the command button named cmdPush. 9. What is a Visual Basic event? Give some examples of events. While your project is running, the user can do many things, such as move the mouse around, click on a command button, move, resize, or close your form’s window, jump to another application, and so on. Each action by the user causes an event to occur in your Visual Basic project. Some of the events you care about (like clicki