Middle Middle Sinister Dexter 2 Math Tutor Application math
Middle Middle Sinister Dexter 2. Math Tutor Application math problem in a Label control an application displays a simple answer to the math problem. It sho form should have a that that displays the screen in Figure 2-98 also have that closes the application The leftmost answer shows the application\'s form before the is clicked to display the clicked rightmost screen sh applic form after the button has been re 2-98 The Math Tutor application Math Tutor u Math Tutor 18 64 82 18 64 Show Answer Show Answer
Solution
here add the label1.text to the form name as 18
here add the label2.text to the form name as 64
and add label3.text to the form as =
add the label4.text to the form
and add the two button components button1 and button2
and name it as show answer ans name it as exit
when u click on the show answer the sum is
82
when u click on Button2 the form exits
private sub1 Button1_click()
dim a,b,c as integers
a=label1.text
b=label2.text
c=label4.text
c=a+b;
end sub()
private sub Button2_click()
form1.close();
end sub()
