[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

TextLabel vanishes when resized


Hi,

I'm trying to make a status bar with a [Text]Label.

I resize it on the Form_Resize() event.

Everything runs fine if 3statusBar" is a Label. But if it is a TextLabel it just vanishes.

Any hint ?

(Gambas 3.20.3 )

Public Sub Form_Resize()
  StatusBar.Width = Me.Width
  StatusBar.Y = Me.Height - StatusBar.Height - 32
  StatusBar.X = 0
  'Print "Status X/Y" & StatusBar.X & " / " & StatusBar.Y & " " & StatusBar.Width & " x " & StatusBar.Height
  'StatusBar.Text = "Status X/Y" & StatusBar.X & " / " & StatusBar.Y & " " & StatusBar.Width & " x " & StatusBar.Height & " computed Y=" & (Me.Height - StatusBar.Height - 32)
End


Follow-Ups:
Re: TextLabel vanishes when resizedBruce Steers <bsteers4@xxxxxxxxx>