The activities (as they would be done in Visual Basic) are:
(1) Placing objects like text boxes, list boxes, picture boxes and command buttons on a form in the best arrangement for the user to do the task.
(2) Set the properties of each Object. Width, Height, Colors, Visible etc.
(3) Code the events of each object. What happens when the user clicks the object, types on it or drags the mouse over it for example?
A useable project would also require some "procedures." A procedure is either a Sub or a Function. The only difference is that a Function returns a value and a Sub doesn't. You could have a Sub named "PutFile" that would write the file to a disk and "GetFile" that would read it back. In the code, the statement "PutFile would run the procedure. Functions would be used for recurring calculations used in a number of places in the code.
You would also have to define the variables and their scope (where they can be read in the project.)
Answered Mar 07, 2011
Edited Mar 07, 2011