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





------------------------------------------------------------------------------
_______________________________________________
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user

Reply via email to