Re: Change menu title

2020-01-21 Thread Jody Bevan via 4D_Tech
Ferdinando: I have never changed the name, I have only ever added, or removed menus. Maybe you need to wipe out the menu and recreate it. Not sure - sorry. Jody > On Jan 20, 2020, at 3:19 PM, stardata.info via 4D_Tech <4d_tech@lists.4d.com> > wrote: > > Hi Jody, > > Actually I use the

Re: Select row in entity selection listbox

2020-01-21 Thread Jeremy Roussak via 4D_Tech
Miyako, Thanks, but that’s not the issue. Listbox 1 is an entity selection of messages. One row has been clicked, and I know (from current item) what the selection is. One of the attributes of the selection is the number of the contact who sent or received the message. Listbox 2 contains an

Re: Change menu title

2020-01-21 Thread Keisuke Miyako via 4D_Tech
sorry, I haven't worked on this exact scenario. maybe after updating the menu text, you need to call SET MENU BAR again? > 2020/01/21 6:19、stardata.info via 4D_Tech <4d_tech@lists.4d.com>のメール: > In manual creation, I can change it, but if I need to change it using one > command how I can this?

Re: Select row in entity selection listbox

2020-01-21 Thread Keisuke Miyako via 4D_Tech
if the listbox is single-select, you can use LISTBOX GET CELL POSITION to get the row number, then check that the "current item" is not Null to verify whether the current row was selected or unselected. (remember, you can unselect a row by shift-click or command click) although collection-type

Select row in entity selection listbox

2020-01-21 Thread Jeremy Roussak via 4D_Tech
I have a form with two entity selection listboxes. One shows all messages ever sent from or to an account; the other, a list of that account’s contacts. When a message is selected, I want to highlight the appropriate contact. I can find the contact, of course; how do I find the row number so I