Question: An application contains the Structure statement shown here. Write a Dim statement that declares a MyFriend variable named school. Then write assignment statements that assign
An application contains the Structure statement shown here. Write a Dim statement that declares a MyFriend variable named school. Then write assignment statements that assign the value in the txtFirst control to the strFirst member and assign the value in the txtLast control to the strLast member. Finally, write assignment statements that assign the value in the strLast member to the lblLast control and assign the value in the strFirst member to the lblFirst control.
Structure MyFriend
Public strLast As String
Public strFirst As String
End Structure
Step by Step Solution
3.45 Rating (165 Votes )
There are 3 Steps involved in it
Dim school As MyFriend sch... View full answer
Get step-by-step solutions from verified subject matter experts
