Re: Bugs with Quick Report Editor v18.4

2020-11-05 Thread Vincent de Lachaux via 4D_Tech
> There is a second bug that I've just encountered with one table, there is an > error message saying 'Error when executing the method "db_Get_field_list" at > line number 151, Indice out of range. Perhaps there is a problem with the > structure of that particular table? Hello Peter Could you

Re: Capturing Full Path Names with Picture Imports

2020-05-26 Thread Vincent de Lachaux via 4D_Tech
Did you try the DOCUMENT system variable ? It should be populate with the full pathname ** 4D Internet Users Group (4D iNUG) New Forum: https://discuss.4D.com Archive: http://lists.4d.com/archives.html Options:

Re: iNUG Messages ― Is it time for it to be more than just 'plain text' ???

2020-05-02 Thread Vincent de Lachaux via 4D_Tech
Hello Chip, You can activate, for the new forum, the mailing list mode in Preferences > Emails. In this mode, topics and categories that you have muted, are not included in these emails. You can also make response by mail. > I really prefer everything coming to me (email) vs having to go get it

Re: Trouble with Comment Blocks v18

2020-03-10 Thread Vincent de Lachaux via 4D_Tech
Is the database accept dot notation ? vdl ** 4D Internet Users Group (4D iNUG) Archive: http://lists.4d.com/archives.html Options: https://lists.4d.com/mailman/options/4d_tech Unsub: mailto:4d_tech-unsubscr...@lists.4d.com

Re: Button is disabled when compiled - Mac only

2019-12-19 Thread Vincent de Lachaux via 4D_Tech
Pat, Beware of the deprecated command _o_DISABLE BUTTON who work with a variable name so all buttons of the process linked with this variable were disabled. You should prefer OBJECT SET ENABLE(*;"buttonName";false) who disable only the button nammed "buttonName" Vincent de Lachaux

Re: OBECT SET TABBABLE?

2019-11-15 Thread Vincent de Lachaux via 4D_Tech
Did you try Form Set entry order? https://doc.4d.com/4Dv17/4D/17.3/FORM-SET-ENTRY-ORDER.301-4621682.en.html Vincent From: 4D_Tech <4d_tech-boun...@lists.4d.com> on behalf of kculotta via 4D_Tech <4d_tech@lists.4d.com> Sent: Thursday, November 14, 2019 6:25:09

Re: [repost - desperate]What runs before ON STARTUP?

2019-10-08 Thread Vincent de Lachaux via 4D_Tech
Hi Chip, Be sure to set a stack size of 0 for each call of the new process command. This is very important especially on PC and with the 64-bit version vincent de lachaux ** 4D Internet Users Group (4D iNUG) Archive:

Re: Checking If Methods Are Preemptive Ready

2019-04-11 Thread Vincent de Lachaux via 4D_Tech
Hello, If you activate the generation of the symbol file in the compilation preferences, compile your database then open the myDtabase_symbols.txt files created near the structure file, All methods are listed at the end of the file with the status "Thread Safe" or "Thread Unsafe". Vincent

Re: [off-ish] Regex help

2018-11-30 Thread Vincent de Lachaux via 4D_Tech
Hello Chip, Did you try this: $x:=Split string($pathname;Folder separator) Vincent ** 4D Internet Users Group (4D iNUG) Archive: http://lists.4d.com/archives.html Options: https://lists.4d.com/mailman/options/4d_tech Unsub:

Re: Volume Shadow Copy

2018-09-19 Thread Vincent de Lachaux via 4D_Tech
Hello, You can read this blog post : https://blog.4d.com/enterprise-virtual-machine-snapshot-support/ Hope it helps Vincent > On 19 Sep 2018, at 07:56, Keith Goebel via 4D_Tech <4D_Tech@lists.4d.com> > wrote: > > Hi all. > We are testing 4D v17 on a Winserver 2016 virtual machine. > The

Re: 4D for iOS: anyone?

2018-09-11 Thread Vincent de Lachaux via 4D_Tech
in works, coming in a next R release (probably R4) > On 11 Sep 2018, at 13:34, Tim Nevels via 4D_Tech <4d_tech@lists.4d.com> wrote: > > On Sep 11, 2018, at 2:29 AM, Rudy Mortier wrote: > >> Thanks a lot for the feedback. >> >> I did go back and edit the templates and fields, so that might be

Re: 4D for iOS: anyone?

2018-09-11 Thread Vincent de Lachaux via 4D_Tech
> On 10 Sep 2018, at 20:18, Two Way Communications via 4D_Tech <4d_tech@lists.4d.com> wrote: > > Is there any place we can get some help? Hi Rudy There is a dedicated forum here: http://forums.4d.com/List_Message/EN:0/1/1/1/1/1/14234613/0/0/25105655/-1/0/0/0/0/0/0/0/ Feel free to post we

Re: Object focusable/tabable properties

2018-01-24 Thread Vincent de Lachaux via 4D_Tech
Since 16R4 you can use FORM SET TAB ORDER https://blog.4d.com/define-the-tab-order-by-programming/ v i n c e n td el a c h a u x Bee green - keep it on the screen > On 24 Jan 2018, at 03:37, Jim Crate via 4D_Tech <4d_tech@lists.4D.com> wrote: >

Re: Debug window messed up

2017-11-14 Thread Vincent de Lachaux via 4D_Tech
This trick is available for all 4D windows (debugger, explorer, toolbar, …) Yes it is a hard reset. v i n c e n td el a c h a u x Bee green - keep it on the screen On 13 Nov 2017, at 18:24, Kirk Brooks via 4D_Tech

Re: Debug window messed up

2017-11-13 Thread Vincent de Lachaux via 4D_Tech
Create a method with just one line : TRACE Run the method with the shift key down will restore the debug window. v i n c e n td el a c h a u x Bee green - keep it on the screen

Re: Placing cursor in text field in included form

2017-10-30 Thread Vincent de Lachaux via 4D_Tech
Hi Lee, The subform container must be set "Focusable". Then, when the container get the focus the form event "On Activate" is triggered. So when the subform get this event, just do a GOTO object. v i n c e n td el a c h a u x Bee green - keep it

Re: Rotate Picture in 4D

2017-06-27 Thread Vincent de Lachaux via 4D_Tech
Hello, If you are using v14 or more, you can try the command SVG_ROTATION_CENTERED ( svgObject ; angle ) > On 27 Jun 2017, at 08:53, Bernd Fröhlich via 4D_Tech <4d_tech@lists.4d.com> > wrote: > > Peter Mew: > >> I am trying to use Miyako's rotate picture component in v13. >> I dont know if

Re: Counting # of specific characters in string/text

2017-05-04 Thread Vincent de Lachaux via 4D_Tech
Something like: // // Project method : str_Occurences // Database: Sandbox // ID[3FBA4FA5A1B74C9A87061DA1D97D5E51] // Created #2-1-2015 by Vincent de Lachaux // // Description:

Re: Corrupted Explorer Window

2017-02-20 Thread Vincent de Lachaux via 4D_Tech
You can close it and then reopen it with the shift key down. v i n c e n td el a c h a u x Bee green - keep it on the screen > On 17 Feb 2017, at 02:07, Sujit Shah via 4D_Tech <4d_tech@lists.4d.com> wrote: > > The 4D Explorer window has gone