'Below code must be located after the tabs are created. The tabstrip labels heights can be changed in the Tabstrip layout in designer
Dim MyList As List
MyList.initialize
MyList.AddAll(Array("brazil.png", "romania.png", "france.png", "fiji.png", "benin.png"))
For i = 0 To MyList.Size-1
Dim c As String =MyList.Get(i)
c=c.SubString2(0,c.IndexOf("."))
Dim l As Label = GetAllTabLabels(TabStrip1).Get(i) 'label
l.SingleLine = False
cs.Initialize.Image(LoadBitmap(File.DirAssets, MyList.Get(i)), 40dip, 40dip, False).Append(CRLF).size(22).Append($"${c}"$)
cs.PopAll
l.Text = cs
Next