After the user selects an image file from the browse editor, I'd like to display it in a button, much like the example in the Telerik documentation. I've tried different calls to the button's methods including: Update, Refresh, and Invalidate. Nothing has worked. What am I missing?
1.Private Sub radLogoFile_ValueChanged(sender As Object, e As EventArgs) Handles radLogoFile.ValueChanged2. btnLogoImage.Image = System.Drawing.Image.FromFile(radLogoFile.Value)3. btnLogoImage.Update() 'Invalidate 'Refresh4.End Sub