Hi, why if I use this code(*) does it only work with QT applications? (lamp.png is present in Data folder) Regards Gianluigi (*) Public Sub Form_Open() Dim hTextLabel As TextLabel With hTextLabel = New TextLabel(Me) .Alignment = Align.Center .H = 32 .W = 32 .X = 100 .Y = 50 .Text = "<img src=\"./lamp.png\">" End With End