Re: ListBoxes and AreaList Pro again

2020-06-16 Thread Philippe Ganter via 4D_Tech
The bottom line is there are three categories of AreaList Pro users: 1. Those who use it for basic needs and only know the old v6-v8 features, that are now mostly available in listboxes as you mentioned. 2. Publishers running large applications with a wide installed base, including AreaList Pro

Re: Native 4D code to convert numbers into text?

2020-06-16 Thread Keith Goebel via 4D_Tech
> I'm looking for code that converts something like this: > 24120.10 into something like this: > twenty-four thousand, one hundred and twenty point one David, I have 4D code that converts your value into "Twenty Four Thousand One Hundred Twenty Dollars and Ten Cents”. It uses the example code you

Re: Native 4D code to convert numbers into text?

2020-06-16 Thread Neil Dennis via 4D_Tech
> I would do this a little differently. I would pass in number (real) > convert to text using commas and decimal points > build an array of each second so if you passed in and got the following string Another option would be to use recursion, that is the one I use now, then you don’t need an arr

Re: 4D Write to 4D Write pro Commands

2020-06-16 Thread nisshaa2004 via 4D_Tech
Thank you Steve and Tom. I will move to the discussion forum and start from there. Thanks & Regards, Nisha -- Sent from: http://4d.1045681.n5.nabble.com/4D-Tech-f1376241.html ** 4D Internet Users Group (4D iNUG) New Forum: htt

Re: Native 4D code to convert numbers into text?

2020-06-16 Thread Charles Miller via 4D_Tech
Hi All, I would do this a little differently. I would pass in number (real) convert to text using commas and decimal points build an array of each second so if you passed in and got the following string 111,111,222,333,444.26 you array would look like this 111 111 222 333 444.26 I would then separ

Re: Native 4D code to convert numbers into text?

2020-06-16 Thread David Adams via 4D_Tech
Thanks! On Wed, Jun 17, 2020 at 1:08 AM Keith Culotta wrote: > This was written for v6 a while back. The app is still being used believe > it or not. > > = > // METHOD: DtoS - Dollar to String - kc 3/1/00 > // INPUT: real - dollar to convert to string >

Re: 4D Write to 4D Write pro Commands

2020-06-16 Thread Tom Benedict via 4D_Tech
Nisha writes: > I have tried Invoke action but could not get it to work in 4D Write Pro. I think you’re on the right track with INVOKE ACTION. INVOKE ACTION is a tricky concept, but once mastered it should serve you well. >I would recommend moving over to the forums, this list is in its last d

Native 4D code to convert numbers into text?

2020-06-16 Thread David Adams via 4D_Tech
I'm looking for code that converts something like this: 24120.10 into something like this: twenty-four thousand, one hundred and twenty point one The hope is to emulate Python's num2words. I figure anyone who had to write a check printing feature years ago might have something along these lines

Re: 4D Write to 4D Write pro Commands

2020-06-16 Thread UKVetDerm via 4D_Tech
I would recommend moving over to the forums, this list is in its last days. https://discuss.4d.com Steve On 16/06/2020, 08:17, "4D_Tech on behalf of nisshaa2004 via 4D_Tech" <4d_tech-boun...@lists.4d.com on behalf of 4d_tech@lists.4d.com> wrote: Hi All, I am in the process of convert

4D Write to 4D Write pro Commands

2020-06-16 Thread nisshaa2004 via 4D_Tech
Hi All, I am in the process of converting 32-bit code to 64 bit and using 4D Write pro in the process. I would like to know if there is a replacement for commands for WR ON COMMAND WR EXECUTE COMMAND WR ON EVENT I have tried Invoke action but could not get it to work in 4D Write Pro. Thanks