Ferdinando, > a list when the mouse enter in every row First, do you want: a- the list to automatically popup when the user enters the row b- the list to popup when the user right clicks on the row
'a' is going to be harder to do. Start with enabling the On mouse enter and On mouse exit form events on the listbox. This will tell you when the user is inside the listbox. To determine what row the mouse is over you will need to determine by from the mouse position, listbox object coordinates, listbox scroll position... this will be a bit of work but once you figure it out will be fast enough. 'b' is easy - just test for Contextual Click in the listbox. Now you need to make the list. I use popup menus for this sort of thing. Either the Pop up menu command (for simple lists) or build a menu on the fly and show with Dynamic pop up menu. Both are very fast and give you complete control over what you display. BTW - the Forum is a much better place for these sorts of questions these days. On Fri, Jul 31, 2020 at 6:14 AM stardata.info via 4D_Tech < [email protected]> wrote: > Hi All, > > In one column of Listbox, I need to give a list of values to enter value > of the column. > > The values contained in a list can be different for every row. > > How can I prepare a list when the mouse enters in every row? > > Thanks > Ferdinando > > ********************************************************************** > 4D Internet Users Group (4D iNUG) > New Forum: https://discuss.4D.com > Archive: http://lists.4d.com/archives.html > Options: https://lists.4d.com/mailman/options/4d_tech > Unsub: mailto:[email protected] > ********************************************************************** -- Kirk Brooks San Francisco, CA ====================== ********************************************************************** 4D Internet Users Group (4D iNUG) New Forum: https://discuss.4D.com Archive: http://lists.4d.com/archives.html Options: https://lists.4d.com/mailman/options/4d_tech Unsub: mailto:[email protected] **********************************************************************

