Re: From where is my form method called?

2019-04-16 Thread Peter Hay via 4D_Tech
Hi Sandor, I've got a feature request that you may want to vote on, for exactly this scenario . https://forums.4d.com/Post/EN/29304309/1/29304310#29304310 -- Pete Hay Managing Director Foreground Software Limited New Zealand

Re: From where is my form method called?

2019-04-15 Thread Sandor Szatmari via 4D_Tech
Yes, thanks, very helpful! Sandor Szatmari > On Apr 15, 2019, at 16:30, Jody Bevan via 4D_Tech <4d_tech@lists.4d.com> > wrote: > > Looks like you found it now. When you have many objects on a form, the way to > have 4D find the object, and select it is as follows: > > 1. Click on the form

Re: From where is my form method called?

2019-04-15 Thread Chip Scheide via 4D_Tech
iNug Technical <4d_tech@lists.4d.com> > Cc: "cjmil...@informed-solutions.com" > Sent: 4/15/2019 12:21 PM > Subject: Re: From where is my form method called? > > Only through the name you always have a clue based upon name. As it > lists form first

Re: From where is my form method called?

2019-04-15 Thread Sandor Szatmari via 4D_Tech
From: cjmiller--- via 4D_Tech <4d_tech@lists.4d.com> To: 4D iNug Technical <4d_tech@lists.4d.com> Cc: "cjmil...@informed-solutions.com" Sent: 4/15/2019 12:21 PM Subject: Re: From where is my form method called? Only through the name you always have

Re: From where is my form method called?

2019-04-15 Thread Sandor Szatmari via 4D_Tech
com> Cc: Douglas von Roeder Sent: 4/15/2019 12:18 PM Subject: Re: From where is my form method called? Sandor: The object method is in this object: [MyObject].MyObjectDetail.bValidate Which is [tablename].formname.objectname. Off the top of my head, I can think of three ways to f

Re: From where is my form method called?

2019-04-15 Thread Douglas von Roeder via 4D_Tech
Sandor: Yes - you can use the right mouse click and there’s also a menu item (can’t be more specific about when menu/item - not logged in to 4D at the moment). Once you get the code running in that OM, one thing to take advantage of in the debugger is the menu items in the contextual menu (the

Re: From where is my form method called?

2019-04-15 Thread cjmiller--- via 4D_Tech
Only through the name you always have a clue based upon name. As it lists form first. So you can load the form and check from there Regards Chuck Sent from my iPhone > On Apr 15, 2019, at 12:18 PM, Sandor Szatmari via 4D_Tech > <4d_tech@lists.4d.com> wrote: > > OK, so, one of those cases

Re: From where is my form method called?

2019-04-15 Thread Douglas von Roeder via 4D_Tech
Sandor: The object method is in this object: [MyObject].MyObjectDetail.bValidate Which is [tablename].formname.objectname. Off the top of my head, I can think of three ways to find that. 1 - Find in design for object name. When 4D displays the search results, double click on an entry to open

Re: From where is my form method called?

2019-04-15 Thread Sandor Szatmari via 4D_Tech
OK, so, one of those cases where you need to send the email in order to find the solution. I had to go to page zero of the form to be able to highlight the 'accept' button and its method is the bValidate. But, in general, is there a way to say 'show me the object that calls this method?'