Inches to centimeters conversion

1.     Create a form that allows the user to use a scrollbar to display what any number of inches would be when converted to centimeters.

2.     The form will consist of 8 labels, 1 commandbutton (Clear) and 1 horizontal scrollbar.

3.     The label with 0's, 100, and 254 will not change.  The middle two labels will change depending on the scrollbar.

4.     Name all controls with the three letter prefix and an appropriate descriptor.

5.     Enter the following code under the scrollbar_change:

The top middle label = the value of your scrollbar

The bottom middle label = the value of the scrollbar * 2.54

7.     Allow the commandbutton to clear the top and bottom middle labels, and to reset the scrollbar to 0.

8.     Design it with titles, images, icons, etc. to make it user friendly.

9.     Save as inches to cm

Back