[Gambas-user] Cotrols don't show.
VonZorch
VonZorch at ...626...
Thu Jan 2 20:41:36 CET 2014
Running Gambas 3.1.1 on Mint Linux 16.
The code
' Gambas class file
Private lblHt[11] As Label
Public Sub _new()
Dim Loop1 As Byte
For Loop1 = 0 To 10
lblHt[Loop1] = New Label(Me)
lblHt[Loop1].x = 20
lblHt[Loop1].y = 20 + (Loop1 * 30)
lblHt[Loop1].Text = Str(Loop1)
lblHt[Loop1].Show
Next
End
This runs without errors but nothing displays on the form.
What do I need to do to display this?
--
View this message in context: http://gambas.8142.n7.nabble.com/Cotrols-don-t-show-tp44970.html
Sent from the gambas-user mailing list archive at Nabble.com.
More information about the User
mailing list