[Gambas-user] [Gambas Bug Tracker] Bug #780: me.left = value and me.top = value, get diffrent position between _new() event and show() event
bugtracker at ...3416...
bugtracker at ...3416...
Thu Oct 1 02:27:22 CEST 2015
http://gambaswiki.org/bugtracker/edit?object=BUG.780&from=L21haW4-
Zainudin AHMAD reported a new bug.
Summary
-------
me.left = value and me.top = value, get diffrent position between _new() event and show() event
Type : Bug
Priority : Low
Gambas version : 3.8.90 (TRUNK)
Product : GUI components
Description
-----------
'position: top : 0 (??? defaul position is center now) and left : 100
Public Sub _new()
Me.Left = 100
End
---------------
'position: top : center and left : 100
Public Sub Form_Show()
Me.Left = 100
End
=================================================
'position: top : 100 and left : 0 (??? defaul position is center now)
Public Sub _new()
Me.Top = 100
End
---------------
'position: top : 100 and left : center
Public Sub Form_Show()
Me.Top = 100
End
More information about the User
mailing list