You will need to load all images in the form and use the presence
property of the image to show/hide the image at the right time. You
cannot dynamically load an image once the form is rendered without user
intervention.So you could so something like this (assuming the Radion
Buttons are in a RadioButton Group called RBG1 and the images are image1
and Image2):if (RBG1.rawValue == "1){ Image1.presence = "visible";
Image2.presence = "invisible";} else { if (RBG1.rawValue == "2" ){
Image2.presence =...