Project choices for this week
1. If you didn’t do it last week you may complete the super-duper palindrome checker (which ignores blanks and alpha-case)
2. Complete the integer array sorter. Use a listbox
to display current array contents. Provide buttons to add numbers to the list,
and clear the listbox display. Be sure you can
sort a partially filled array, and catch format and indexoutofbounds
exceptions (or show message box if user tries to enter too many elements).
3. Do the same as #2 except with
names (Strings). Display all names in
the array in a listbox. Allow user to add names, and clear names. Add
a button to sort the names (display sorted names) and be sure to catch indexoutofbounds exceptions (or show message box if user
tries to enter too many elements).
4. Complete either a random picture project (like that in the week 8 ppt) or a display selected picture project. Allow the user to enter names of pictures. Provide a button to display a random picture in a picturebox, or provide a combobox (or a textbox) to allow the user to select a particular picture for display.