On Tue, 28 Aug 2012, rocko wrote:
> Been trying to get a dataview to expand when the window is maximized.
> I assume the dataview needs a container to do that, but which container?
> 
> 
> -- 
> rocko <sunblast...@gmail.com>
> 

You mean: Resize the DataView when the Window is resized?
Fortunately, Gambas is Basic so that goes rather programmatically:

Public Sub Form_Resize() ' Catch the Resize event of the Window
        DataView.Resize(...) ' Insert values; you can refer to the new
                             ' dimensions of the Window via Me.W, Me.H
End

The Window itself is your container in this case but I can't recall any
container that resizes its children automatically...

Regards,
Tobi

------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user

Reply via email to