What are the three steps for writing Visual Basic projects?
Describe in your own words what happens in each of the steps. Planning 1. Design the user interface. When you plan the user interface, you draw a sketch of the screens the user will see when running your project. On your sketch, show the forms and all of the controls that you plan to use. Indicate the names that you plan to give the form and each of the objects on the form. 2. Plan the properties. For each of the objects, write down the properties that you plan to set changed for each project during the design of the form. 3. Plan the Basic code. This is where you plan the procedures that will execute when your project runs. You will determine which events require action to be taken, and plan, step-by-step, what those actions should be. Programming After you have completed the planning steps and have agreement from your user, you are ready to begin the actual construction of the project. You will use the same three step process that you used for planning. 1. Define the user interface.