Write a project to display the flags of four different countries, depending on the setting of the radio buttons. In addition, display the name of the country in the large label under the flag picture box. The user also can choose to display or hide the form's title, the country name, and the name of the programmer. Use check boxes for the display/hide choices.
Include keyboard access keys for all radio buttons, check boxes, and buttons. Make the Exit button the Cancel button. Include a Print button and ToolTips.
You can choose the countries and flags. (The StudentDataImages MicrosoftIcons folder holds flag icons for four countries, which you can use if you wish.)
Hints: When a project begins running, the focus goes to the control with the lowest Tablndex. Because that control likely is a radio button, one button will appear selected. You must either display the first flag to match the radio button or make the focus begin in a different control. You might consider beginning the focus on a button.
Set the Visible property of a control to the Checked property of the corresponding check box. That way when the check box is selected, the control becomes visible.
Because all three selectable controls will be visible when the project begins, set the Checked property of the three check boxes to true at design time.