Re: [Gambas-user] popup masked

2009-08-14 Thread Jean-Yves F. Barbier
Fabien Bodard a écrit : > You must to set the popup on the form > > Set the property of the list (ignore=true) > > > The position of your popup is > > iPos = listview.left > hCont = listview.parent > > do > iPos+=hCont.Left > hCont = hcont.parent > if hCont is WIndow then break > loop >

Re: [Gambas-user] popup masked

2009-08-14 Thread Fabien Bodard
You must to set the popup on the form Set the property of the list (ignore=true) The position of your popup is iPos = listview.left hCont = listview.parent do iPos+=hCont.Left hCont = hcont.parent if hCont is WIndow then break loop It's the method used for help popup, autocompletion lis

[Gambas-user] popup masked

2009-08-14 Thread Jean-Yves F. Barbier
Hi list, I'm using the excellent piece of code from Dimitris to create popups on a left click using a ListView. Construction overlapping is: Form / Panel / TreeView / ListView (that, in fact, is a direct child from Panel) My PB is if I left click too much right, the popup is cut by the panel's