RE: Stack level in 4DDebugLog.txt

2017-12-13 Thread Piotr Chabot Stadhouders via 4D_Tech
Hi Chip, Tim, Could there be some other weird reason why the stack level increases and doesn't decrease? Maybe calling plugin commands, or maybe EXECUTE METHOD? Maybe a bug in the debug log? Maybe something in Windows 10? I know nearly for sure that there is no recursion, and still the stack

Re: 4D Write Pro Sample DB on YouTube

2017-12-13 Thread Tilman Haerdle via 4D_Tech
Hello Paul, who is "we"? No offense, many people surely prefer unchanged appearances over new looks one might have to get used to, especially if they require additional layout adaptations. I assume there is a sizable group of people who prefer a new appearance for many other reasons. Life is

RE: 4D Write Pro Sample DB on YouTube

2017-12-13 Thread Paul Dennis via 4D_Tech
I appreciate that 4d has got round to providing us with a tool bar. Can somebody please tell the designers who seem to rule the roost that we dont need great big icons and clunky fonts. What is the obsession ? Please can we have something like the original 4d write style. Thanks Paul -- Sent

Re: localisation (again)

2017-12-13 Thread Peter Mew via 4D_Tech
Hi But Thats what I'm doing, and its not working. The string looks like "12345.12345" and the Conversion looks like C_REAL($Number) C_TEXT($NumString) $NumString:-"12345.12345" $Number:=Num($NumString;".") On a UK system $Number = 12345.12345 On a German system $Number = 12345 any ideas would

Re: Stack level in 4DDebugLog.txt

2017-12-13 Thread Timothy Penner via 4D_Tech
Do you have code that can reproduce this? If so, what does the call chain look like in the debugger if you trace it? Does it show 30 calls deep or 2 calls deep? Can you supply the code and or debug logs that show this? -Tim Sent from my Verizon, Samsung Galaxy smartphone

Re: localisation (again)

2017-12-13 Thread Chip Scheide via 4D_Tech
as a work around: $Loc:=position("."; imported_Text_Number) $Text_Integer:=substring($imported_Text_Number;1;$Loc-1) $Integer:=Num($Text_Integer) $Text_Integer:=substring(imported_Text_Number;$Loc+1) $Decimal:=num($Text_Integer) $Final_Value:=$Integer+($Decimal/(10*length($Text_Integer))) Given

RE: AreaList Pro version 10 - The new breakthrough in 4D user interface

2017-12-13 Thread Randy Engle via 4D_Tech
Phil, Congrats on getting this out! Randy Engle, Director XC2 Software LLC – XC2LIVE! -Original Message- From: 4D_Tech [mailto:4d_tech-boun...@lists.4d.com] On Behalf Of Philippe Ganter via 4D_Tech Sent: Wednesday, December 13, 2017 6:39 AM To: 4D iNug Technical <4d_tech@lists.4D.com>

Twin Process for 4D SQL Data Source

2017-12-13 Thread Alan Tilson via 4D_Tech
Hello everyone, I find myself switching data sources frequently (20 or more times in a few minutes-I'll count the number...) back and forth between 4D and my client's MS SQL Server based system. So today I've been contemplating the idea that I might put all my 4D SQL code in a separate process so

Re: Twin Process for 4D SQL Data Source

2017-12-13 Thread Charles Miller via 4D_Tech
Hi Alan, Is there not a command that allows you to switch. I seem to remember somethingt like Use Local but could not find it Regards Chuck On Wed, Dec 13, 2017 at 1:12 PM, Alan Tilson via 4D_Tech < 4d_tech@lists.4d.com> wrote: > Hello Chuck, > You are probably right. I just counted 14

4D Write Pro Sample DB on YouTube

2017-12-13 Thread Tim Nevels via 4D_Tech
On Dec 13, 2017, at 11:28 AM, Paul Dennis wrote: > I appreciate that 4d has got round to providing us with a tool bar. Can > somebody please tell the designers who seem to rule the roost that we dont > need great big icons and clunky fonts. What is the obsession ? Please can we > have something

Re: Twin Process for 4D SQL Data Source

2017-12-13 Thread Alan Tilson via 4D_Tech
Hello Chuck, You are probably right. I just counted 14 logins to the SQL Server in 1 min 50 sec so I ran a test logging in and out 20 times and this took 2.03 seconds. There would have to be some overhead associated with using a separate process so I doubt there would be any gain. It just seems

Re: Twin Process for 4D SQL Data Source

2017-12-13 Thread Alan Tilson via 4D_Tech
Chuck, 4D ODBC Pro is still listed on the 4D website for v16 and it says that it comes with 4D Developer Professional and with Team Developer Professional, but I couldn't find a place where it is sold for 4d server. I prefer using the native core 4D functionalities wherever possible, but it is

RE: Twin Process for 4D SQL Data Source

2017-12-13 Thread Timothy Penner via 4D_Tech
Hi Alan, > but I couldn't find a place where it is sold for 4d server. ODBC Pro can be purchased as an expansion when configuring a new server on the store: https://store.4d.com/us/article/4USE16.shtml https://store.4d.com/us/article/4USD16.shtml ODBC Pro can also be purchased as an addon for

Re: Twin Process for 4D SQL Data Source

2017-12-13 Thread Alan Tilson via 4D_Tech
Hello Tim, Thanks for the info. Where do I find pricing for ODBC Pro? Alan On Wed, Dec 13, 2017 at 4:20 PM, Timothy Penner wrote: > Hi Alan, > > > but I couldn't find a place where it is sold for 4d server. > > ODBC Pro can be purchased as an expansion when configuring a new

Re: localisation (again)

2017-12-13 Thread Alan Chan via 4D_Tech
Alternative simplified version of Num for this situation C_REAL($0;$num) //same as ES_num yet support decimal C_TEXT($1) C_LONGINT($len;$i;$k;$j) $num:=0 $len:=Length($1) For ($i;$len;1;-1) $k:=Character code($1[[$i]]) If (($k>47) & ($k<58)) $num:=$num+(($k-48)*(10^($len-$i-$j))) Else If

RE: Twin Process for 4D SQL Data Source

2017-12-13 Thread Timothy Penner via 4D_Tech
Following the links I provided should provide a price; It should be listed next to the checkbox for the expansion. Pricing could be different depending on your level of partnership; so the best way to get accurate pricing is to call your account/sales rep. -Tim From: Alan Tilson

Macros - how to insert "<>"

2017-12-13 Thread Chip Scheide via 4D_Tech
i want to have a 4D marco include the following text, but the macro parser chokes. My HTML-fu is not strong :) I believe that the macro parser is choking on the left arrow right arrow, so I need some help in escaping them. ((<>x_Cr*2)+Current method name+<>x_Cr) Thanks! Chip ---

Re: Macros - how to insert "<>"

2017-12-13 Thread Wayne Stewart via 4D_Tech
Regards, Wayne [image: --] Wayne Stewart [image: http://]about.me/waynestewart On 14 December 2017 at 09:40, Chip Scheide via 4D_Tech <4d_tech@lists.4d.com > wrote: > i want to have a 4D marco include the following text, but the macro > parser chokes. > My

Re: Macros - how to insert "<>"

2017-12-13 Thread Chip Scheide via 4D_Tech
Thanks!! On Thu, 14 Dec 2017 09:44:27 +1100, Wayne Stewart via 4D_Tech wrote: > --- Gas is for washing parts Alcohol is for drinkin' Nitromethane is for racing ** 4D Internet Users Group (4D iNUG) FAQ:

RE: Macros - how to insert "<>"

2017-12-13 Thread Randy Engle via 4D_Tech
Chip Randy Engle, Director XC2 Software LLC – XC2LIVE! mailto: randy.en...@xc2software.com PH: 800.761.4999 – 415.456.9200 Internet – Hosted – In the Cloud: On-line Backflow Test Entry! XC2Live! - Backflow Program Management Operational Now! – Call for additional information: