Project "array.vb": Array manipulation.

DESCRIPTION:    Manipulate data in an array.

FORM & I/O CONTROLS:    Create a form with one listbox for output and one or more textboxes for input.
There should be one array, globally available at the class (form) level.
Use a constant (SIZE) for the size of the array container, and a variable (many) for the number of active elements.

BUTTONS:    Add the following buttons, and write handlers to perform the indicated tasks:


MODULARIZE:

Be sure to modularize your code, so that tasks are performed only in subs and functions that are called by your event-handlers. Event handlers should do no input, nor output, nor computation.