Hi,
How do I set an image to a tab programmatically if I have the filepath of the .png file?
Just set the Image of the Appearance property:
this.ultraTabControl1.Tabs[0].Appearance.Image = Image.FromFile(@"C:\MyImage.png");
-Matt