Reference no: EM1386854
Prepare the application which would perform matrix addition. Each matrix should be three rows by three columns. The following is an example:
Store each matrix in an array.
1. The form should permit user to input each element for both matrices.
2. Input should be done through text boxes, and number of characters should be limited to two characters per text box.
3. By default, Matrix 1 would have following value:
5, 2, 3
8, 32, 1
4, 9, 10
By default, Matrix 2 would have following value:
2, 1, 3
9, 3, 2
6, 7, 20
1. Application should display results in a message box.
2. Make the compute button the Accept button.
3. Prepare Clear button which will clear result text box and reset all text boxes, 4. controls, and internal variables used.
5. Prepare the Exit button.
6. Use labels to recognize input and output controls.