|
View:
New views
18 Messages
—
Rating Filter:
Alert me
|
|
|
v11.4 : 67 is a list referenceI encounter an inexplicable problem so I put the following code as the
first thing in On Startup. C_LONGINT($ref) $ref:=67 If (Is a list($ref)) ALERT("67 is a list reference!") End if Then I fire up 4D (standalone) and the alert is displayed. I think I am going insane. Can any one help verify this? OS is Vista SP2 if that matters. Pluto Ng ********************************************************************** Register for 4D Summit 2009 Today Early Bird Pricing Ends August 28th - http://www.4d.com/summit 4D Internet Users Group (4D iNUG) FAQ: http://www.4D.com/support/faqnug.html Archive: http://lists.4D.com/archives.html Options: https://lists.4d.com/mailman/options/4d_tech Unsub: mailto:4D_Tech-Unsubscribe@... ********************************************************************** |
|
|
Re: v11.4 : 67 is a list referenceThat's actually not too unlikely, thinking about it. A lot of 4D is
built with ... 4D, and that includes a few hierarchical lists. As far as the language is concerned, a list reference is just a longint; 67 is as good as any other. So what you're seeing may just be a reference to a h-list that's used somewhere in the application, and built on startup before any of your code gets to run... 2009/7/3 Pluto Ng <plutong@...>: > I encounter an inexplicable problem so I put the following code as the > first thing in On Startup. > > > > C_LONGINT($ref) > > $ref:=67 > > If (Is a list($ref)) > > ALERT("67 is a list reference!") > > End if > -- David Dancy Sydney, Australia ********************************************************************** Live Data Mapping Services with 4D v11 SQL See it for yourself - http://www.4d.com/solutions/ndwater.html 4D Internet Users Group (4D iNUG) FAQ: http://www.4D.com/support/faqnug.html Archive: http://lists.4D.com/archives.html Options: https://lists.4d.com/mailman/options/4d_tech Unsub: mailto:4D_Tech-Unsubscribe@... ********************************************************************** |
|
|
RE: v11.4 : 67 is a list referenceDavid,
What I was trying to do was to overload a parameter so that it may be a plain longint value or a hierarchical list reference. I guess this is a no go if 4D is stashing hierarchical lists in memory itself. And, Is a list() becomes less useful this way. Imagine a bug in the program causing 67 to be passed to a method which tests if it is a list then clears it. It would be very much fun tracking it down since we don't even know what list 67 is for, let alone the consequences of clearing it. Pluto Ng > -----Original Message----- > From: 4d_tech-bounces@... > [mailto:4d_tech-bounces@...] On Behalf Of David Dancy > Sent: Friday, July 03, 2009 10:09 AM > To: 4D iNug Technical > Subject: Re: v11.4 : 67 is a list reference > > That's actually not too unlikely, thinking about it. A lot of 4D is > built with ... 4D, and that includes a few hierarchical lists. As far > as the language is concerned, a list reference is just a longint; 67 > is as good as any other. So what you're seeing may just be a reference > to a h-list that's used somewhere in the application, and built on > startup before any of your code gets to run... > > > > 2009/7/3 Pluto Ng <plutong@...>: > > I encounter an inexplicable problem so I put the following > code as the > > first thing in On Startup. > > > > > > > > C_LONGINT($ref) > > > > $ref:=67 > > > > If (Is a list($ref)) > > > > ALERT("67 is a list reference!") > > > > End if > > > > > > -- > David Dancy > Sydney, Australia > ********************************************************************** > Live Data Mapping Services with 4D v11 SQL > See it for yourself - http://www.4d.com/solutions/ndwater.html > > 4D Internet Users Group (4D iNUG) > FAQ: http://www.4D.com/support/faqnug.html > Archive: http://lists.4D.com/archives.html > Options: https://lists.4d.com/mailman/options/4d_tech > Unsub: mailto:4D_Tech-Unsubscribe@... > ********************************************************************** > Live Data Mapping Services with 4D v11 SQL See it for yourself - http://www.4d.com/solutions/ndwater.html 4D Internet Users Group (4D iNUG) FAQ: http://www.4D.com/support/faqnug.html Archive: http://lists.4D.com/archives.html Options: https://lists.4d.com/mailman/options/4d_tech Unsub: mailto:4D_Tech-Unsubscribe@... ********************************************************************** |
|
|
Re: v11.4 : 67 is a list referenceDavid,
That was true in the very first v11. It was possible to clear intenal 4D lists, that leads to stange behaviours. Internal hierarchical lists are not accessible anymore from developer's code. There is a memory separation now. This is also true for all 4D resources. Try this little piece of code : ARRAY LONGINT($Lists_al;0) For ($Loop_l;1;MAXLONG ) If (Is a list($Loop_l)) APPEND TO ARRAY($Lists_al;$Loop_l) End if End for TRACE ` $Lists_al will remain empty I can't explain the bug raised by Pluto, maybe he can give some details or send a sample database to tech support. Amicalement, Jérôme ---------------------------------------------- Let the rhino keep its horn - Jul 7,2006 West Africa's version of the black rhino appears to be extinct, the World Conservation Union said on Friday. (Reuters) http://www.worldcommunitygrid.org/ : 4D DevTeam ---------------------------------------------- ********************************************************************** Live Data Mapping Services with 4D v11 SQL See it for yourself - http://www.4d.com/solutions/ndwater.html 4D Internet Users Group (4D iNUG) FAQ: http://www.4D.com/support/faqnug.html Archive: http://lists.4D.com/archives.html Options: https://lists.4d.com/mailman/options/4d_tech Unsub: mailto:4D_Tech-Unsubscribe@... ********************************************************************** |
|
|
Re: v11.4 : 67 is a list referenceJérôme
Thanks for that clarification. I don't remember ever coming across the problem myself, and had hoped that the memory separation would be enforced by 4D - but bugs will be bugs and I wondered if somehow this one had got through the net. 2009/7/3 Jérôme Pupier <jpupier@...>: > David, > > That was true in the very first v11. It was possible to clear intenal > 4D lists, that leads to stange behaviours. Internal hierarchical lists > are not accessible anymore from developer's code. There is a memory > separation now. This is also true for all 4D resources. Cheers -- David Dancy Sydney, Australia ********************************************************************** Live Data Mapping Services with 4D v11 SQL See it for yourself - http://www.4d.com/solutions/ndwater.html 4D Internet Users Group (4D iNUG) FAQ: http://www.4D.com/support/faqnug.html Archive: http://lists.4D.com/archives.html Options: https://lists.4d.com/mailman/options/4d_tech Unsub: mailto:4D_Tech-Unsubscribe@... ********************************************************************** |
|
|
Re: v11.4 : 67 is a list referencePluto
As Jérôme replied it seems that an exposed internal list is not likely to be the source of your problem. Sorry for the red herring! Do you have any lists elsewhere that get initialised before your the place in your On Startup that detects the problem? -- David Dancy Sydney, Australia ********************************************************************** Live Data Mapping Services with 4D v11 SQL See it for yourself - http://www.4d.com/solutions/ndwater.html 4D Internet Users Group (4D iNUG) FAQ: http://www.4D.com/support/faqnug.html Archive: http://lists.4D.com/archives.html Options: https://lists.4d.com/mailman/options/4d_tech Unsub: mailto:4D_Tech-Unsubscribe@... ********************************************************************** |
|
|
RE: v11.4 : 67 is a list referenceDavid,
I put that code in the first line of On Startup and 67 is still tested positive. It seems that internal lists _are_ exposed. To confirm, I have just created a brand new 4dbase on another Windows box. Put the code in On Startup. Quit and relaunch. The result is the same. 67 is still a list. I then put Jérôme's code in On Startup. Quit and relaunch. And I get 44 elements in the array. The list references are between 30 to 96. I don't know what Jérôme is using so that his result is different than mine. Might be there is a difference between Windows and Mac, might be the build. Anyway, for the reference, my environment is Vista SP2, 4D v11.4 (plain, non-HF). If you could, please try run that few line of code on your machine. See what you get. Pluto Ng > -----Original Message----- > From: 4d_tech-bounces@... [mailto:4d_tech-bounces@...] > On Behalf Of David Dancy > Sent: Friday, July 03, 2009 6:10 PM > To: 4D iNug Technical > Subject: Re: v11.4 : 67 is a list reference > > Pluto > > As Jérôme replied it seems that an exposed internal list is not likely > to be the source of your problem. Sorry for the red herring! > > Do you have any lists elsewhere that get initialised before your the > place in your On Startup that detects the problem? > > -- > David Dancy > Sydney, Australia ********************************************************************** Live Data Mapping Services with 4D v11 SQL See it for yourself - http://www.4d.com/solutions/ndwater.html 4D Internet Users Group (4D iNUG) FAQ: http://www.4D.com/support/faqnug.html Archive: http://lists.4D.com/archives.html Options: https://lists.4d.com/mailman/options/4d_tech Unsub: mailto:4D_Tech-Unsubscribe@... ********************************************************************** |
|
|
Re: v11.4 : 67 is a list referenceCuriouser and curiouser!
v11.4.0.60146 on Windows XP SP3, I get $Lists_al with values in it! Yikes. Values are: 30,32,33,34,358,36,37,38,39,40,42,45,47,48,49,50,51,52,53,54,55,57,60,62,63,64,65,66,67,68,69,70,72,74,77,78,79,80,81,82,83,84,85,96 Perhaps that's been dealt with on a HF (can't remember what HF if any my build of 4D translates to...) but this is a little disconcerting, to say the least. Cheers -- David Dancy Sydney, Australia ********************************************************************** Live Data Mapping Services with 4D v11 SQL See it for yourself - http://www.4d.com/solutions/ndwater.html 4D Internet Users Group (4D iNUG) FAQ: http://www.4D.com/support/faqnug.html Archive: http://lists.4D.com/archives.html Options: https://lists.4d.com/mailman/options/4d_tech Unsub: mailto:4D_Tech-Unsubscribe@... ********************************************************************** |
|
|
RE: v11.4 : 67 is a list referenceDavid,
60146 is plain v11.4. You and I are running the same build. I have filed a bug report (ACI0062635). Pluto Ng > -----Original Message----- > From: 4d_tech-bounces@... [mailto:4d_tech-bounces@...] > On Behalf Of David Dancy > Sent: Saturday, July 04, 2009 1:48 PM > To: 4D iNug Technical > Subject: Re: v11.4 : 67 is a list reference > > Curiouser and curiouser! > > v11.4.0.60146 on Windows XP SP3, I get $Lists_al with values in it! Yikes. > > Values are: > > 30,32,33,34,358,36,37,38,39,40,42,45,47,48,49,50,51,52,53,54,55,57,60,62 , > 63,64,65,66,67,68,69,70,72,74,77,78,79,80,81,82,83,84,85,96 > > Perhaps that's been dealt with on a HF (can't remember what HF if any > my build of 4D translates to...) but this is a little disconcerting, > to say the least. > > Cheers > > -- > David Dancy > Sydney, Australia > ************************************************************** > ******** > Live Data Mapping Services with 4D v11 SQL > See it for yourself - http://www.4d.com/solutions/ndwater.html > > 4D Internet Users Group (4D iNUG) > FAQ: http://www.4D.com/support/faqnug.html > Archive: http://lists.4D.com/archives.html > Options: https://lists.4d.com/mailman/options/4d_tech > Unsub: mailto:4D_Tech-Unsubscribe@... > ************************************************************** > ******** Live Data Mapping Services with 4D v11 SQL See it for yourself - http://www.4d.com/solutions/ndwater.html 4D Internet Users Group (4D iNUG) FAQ: http://www.4D.com/support/faqnug.html Archive: http://lists.4D.com/archives.html Options: https://lists.4d.com/mailman/options/4d_tech Unsub: mailto:4D_Tech-Unsubscribe@... ********************************************************************** |
|
|
|
|
|
RE: v11.4 : 67 is a list referenceDavid,
I tested with a brand new empty 4dbase. I am afraid components is not a factor in here. I have not looked into the lists. What they are do not matter. The point is they should be hidden. Pluto Ng > -----Original Message----- > From: 4d_tech-bounces@... [mailto:4d_tech-bounces@...] > On Behalf Of David Lieb > Sent: Saturday, July 04, 2009 8:08 PM > To: 4d_tech@... > Subject: Re: v11.4 : 67 is a list reference > > Pluto, > Are you using any components? Components and host share list references. > Also, did you try to see what's actually in the lists, using e.g. Count List > Items and Get List Item? > > David > > On Sat, Jul 4, 2009 at 3:00 AM, Pluto Ng wrote: > > > > 60146 is plain v11.4. You and I are running the same build. > > > > I have filed a bug report (ACI0062635). > > > > Pluto Ng > > > ************************************************************** > ******** > Live Data Mapping Services with 4D v11 SQL > See it for yourself - http://www.4d.com/solutions/ndwater.html > > 4D Internet Users Group (4D iNUG) > FAQ: http://www.4D.com/support/faqnug.html > Archive: http://lists.4D.com/archives.html > Options: https://lists.4d.com/mailman/options/4d_tech > Unsub: mailto:4D_Tech-Unsubscribe@... > ************************************************************** > ******** Live Data Mapping Services with 4D v11 SQL See it for yourself - http://www.4d.com/solutions/ndwater.html 4D Internet Users Group (4D iNUG) FAQ: http://www.4D.com/support/faqnug.html Archive: http://lists.4D.com/archives.html Options: https://lists.4d.com/mailman/options/4d_tech Unsub: mailto:4D_Tech-Unsubscribe@... ********************************************************************** |
|
|
Re: v11.4 : 67 is a list referenceHi,
Back to the Office, I'm finally able to reproduce this _strange_ behaviour .. I've tried to display the lists, they all are empty.. It's definitely a bug. Can you please fill it. I transmit to the appropriate dev. Thanks Amicalement, Jérôme ---------------------------------------------- Let the rhino keep its horn - Jul 7,2006 West Africa's version of the black rhino appears to be extinct, the World Conservation Union said on Friday. (Reuters) http://www.worldcommunitygrid.org/ : 4D DevTeam ---------------------------------------------- On Sun, Jul 5, 2009 at 9:15 PM, Pluto Ng<plutong@...> wrote: > David, > > I tested with a brand new empty 4dbase. I am afraid components is not a > factor in here. > > I have not looked into the lists. What they are do not matter. The point > is they should be hidden. > > > Pluto Ng > > >> -----Original Message----- >> From: 4d_tech-bounces@... > [mailto:4d_tech-bounces@...] >> On Behalf Of David Lieb >> Sent: Saturday, July 04, 2009 8:08 PM >> To: 4d_tech@... >> Subject: Re: v11.4 : 67 is a list reference >> >> Pluto, >> Are you using any components? Components and host share list > references. >> Also, did you try to see what's actually in the lists, using e.g. > Count List >> Items and Get List Item? >> >> David >> >> On Sat, Jul 4, 2009 at 3:00 AM, Pluto Ng wrote: >> > >> > 60146 is plain v11.4. You and I are running the same build. >> > >> > I have filed a bug report (ACI0062635). >> > >> > Pluto Ng >> > >> ************************************************************** >> ******** >> Live Data Mapping Services with 4D v11 SQL >> See it for yourself - http://www.4d.com/solutions/ndwater.html >> >> 4D Internet Users Group (4D iNUG) >> FAQ: http://www.4D.com/support/faqnug.html >> Archive: http://lists.4D.com/archives.html >> Options: https://lists.4d.com/mailman/options/4d_tech >> Unsub: mailto:4D_Tech-Unsubscribe@... >> ************************************************************** >> ******** > ********************************************************************** > Live Data Mapping Services with 4D v11 SQL > See it for yourself - http://www.4d.com/solutions/ndwater.html > > 4D Internet Users Group (4D iNUG) > FAQ: http://www.4D.com/support/faqnug.html > Archive: http://lists.4D.com/archives.html > Options: https://lists.4d.com/mailman/options/4d_tech > Unsub: mailto:4D_Tech-Unsubscribe@... > ********************************************************************** > Live Data Mapping Services with 4D v11 SQL See it for yourself - http://www.4d.com/solutions/ndwater.html 4D Internet Users Group (4D iNUG) FAQ: http://www.4D.com/support/faqnug.html Archive: http://lists.4D.com/archives.html Options: https://lists.4d.com/mailman/options/4d_tech Unsub: mailto:4D_Tech-Unsubscribe@... ********************************************************************** |
|
|
Re: v11.4 : 67 is a list referenceHi,
The problem is reproducible under certain circumstances. These are menu references (menu=hlist). The bug is opened for the development team. Thanks Amicalement, Jérôme ---------------------------------------------- Let the rhino keep its horn - Jul 7,2006 West Africa's version of the black rhino appears to be extinct, the World Conservation Union said on Friday. (Reuters) http://www.worldcommunitygrid.org/ : 4D DevTeam ---------------------------------------------- On Sat, Jul 4, 2009 at 8:44 AM, Pluto Ng<plutong@...> wrote: > David, > > 60146 is plain v11.4. You and I are running the same build. > > I have filed a bug report (ACI0062635). > > Pluto Ng > > > >> -----Original Message----- >> From: 4d_tech-bounces@... > [mailto:4d_tech-bounces@...] >> On Behalf Of David Dancy >> Sent: Saturday, July 04, 2009 1:48 PM >> To: 4D iNug Technical >> Subject: Re: v11.4 : 67 is a list reference >> >> Curiouser and curiouser! >> >> v11.4.0.60146 on Windows XP SP3, I get $Lists_al with values in it! > Yikes. >> >> Values are: >> >> > 30,32,33,34,358,36,37,38,39,40,42,45,47,48,49,50,51,52,53,54,55,57,60,62 > , >> 63,64,65,66,67,68,69,70,72,74,77,78,79,80,81,82,83,84,85,96 >> >> Perhaps that's been dealt with on a HF (can't remember what HF if any >> my build of 4D translates to...) but this is a little disconcerting, >> to say the least. >> >> Cheers >> >> -- >> David Dancy >> Sydney, Australia >> ************************************************************** >> ******** >> Live Data Mapping Services with 4D v11 SQL >> See it for yourself - http://www.4d.com/solutions/ndwater.html >> >> 4D Internet Users Group (4D iNUG) >> FAQ: http://www.4D.com/support/faqnug.html >> Archive: http://lists.4D.com/archives.html >> Options: https://lists.4d.com/mailman/options/4d_tech >> Unsub: mailto:4D_Tech-Unsubscribe@... >> ************************************************************** >> ******** > ********************************************************************** > Live Data Mapping Services with 4D v11 SQL > See it for yourself - http://www.4d.com/solutions/ndwater.html > > 4D Internet Users Group (4D iNUG) > FAQ: http://www.4D.com/support/faqnug.html > Archive: http://lists.4D.com/archives.html > Options: https://lists.4d.com/mailman/options/4d_tech > Unsub: mailto:4D_Tech-Unsubscribe@... > ********************************************************************** > Live Data Mapping Services with 4D v11 SQL See it for yourself - http://www.4d.com/solutions/ndwater.html 4D Internet Users Group (4D iNUG) FAQ: http://www.4D.com/support/faqnug.html Archive: http://lists.4D.com/archives.html Options: https://lists.4d.com/mailman/options/4d_tech Unsub: mailto:4D_Tech-Unsubscribe@... ********************************************************************** |
|
|
RE: v11.4 : 67 is a list referenceJérôme,
I have filed a bug report, ACI0062635. QA has replied that this has been fixed in v11.4. I presume they mean v11.5. Pluto Ng > -----Original Message----- > From: 4d_tech-bounces@... [mailto:4d_tech-bounces@...] > On Behalf Of Jérôme Pupier > Sent: Tuesday, July 07, 2009 12:08 AM > To: 4D iNug Technical > Subject: Re: v11.4 : 67 is a list reference > > Hi, > > The problem is reproducible under certain circumstances. These are > menu references (menu=hlist). > The bug is opened for the development team. > > Thanks > > > Amicalement, > > Jérôme > ---------------------------------------------- > Let the rhino keep its horn > - Jul 7,2006 > West Africa's version of the black rhino appears > to be extinct, the World Conservation Union > said on Friday. (Reuters) > > http://www.worldcommunitygrid.org/ : 4D DevTeam > > ---------------------------------------------- > > > > On Sat, Jul 4, 2009 at 8:44 AM, Pluto Ng<plutong@...> wrote: > > David, > > > > 60146 is plain v11.4. You and I are running the same build. > > > > I have filed a bug report (ACI0062635). > > > > Pluto Ng > > > > > > > >> -----Original Message----- > >> From: 4d_tech-bounces@... > > [mailto:4d_tech-bounces@...] > >> On Behalf Of David Dancy > >> Sent: Saturday, July 04, 2009 1:48 PM > >> To: 4D iNug Technical > >> Subject: Re: v11.4 : 67 is a list reference > >> > >> Curiouser and curiouser! > >> > >> v11.4.0.60146 on Windows XP SP3, I get $Lists_al with values in it! > > Yikes. > >> > >> Values are: > >> > >> > > > 30,32,33,34,358,36,37,38,39,40,42,45,47,48,49,50,51,52,53,54,55,57,60,62 > > , > >> 63,64,65,66,67,68,69,70,72,74,77,78,79,80,81,82,83,84,85,96 > >> > >> Perhaps that's been dealt with on a HF (can't remember what HF if any > >> my build of 4D translates to...) but this is a little disconcerting, > >> to say the least. > >> > >> Cheers > >> > >> -- > >> David Dancy > >> Sydney, Australia > >> > ************************************************************** > >> ******** > >> Live Data Mapping Services with 4D v11 SQL > >> See it for yourself - http://www.4d.com/solutions/ndwater.html > >> > >> 4D Internet Users Group (4D iNUG) > >> FAQ: http://www.4D.com/support/faqnug.html > >> Archive: http://lists.4D.com/archives.html > >> Options: https://lists.4d.com/mailman/options/4d_tech > >> Unsub: mailto:4D_Tech-Unsubscribe@... > >> > ************************************************************** > >> ******** > > > ************************************************************** > ******** > > Live Data Mapping Services with 4D v11 SQL > > See it for yourself - http://www.4d.com/solutions/ndwater.html > > > > 4D Internet Users Group (4D iNUG) > > FAQ: http://www.4D.com/support/faqnug.html > > Archive: http://lists.4D.com/archives.html > > Options: https://lists.4d.com/mailman/options/4d_tech > > Unsub: mailto:4D_Tech-Unsubscribe@... > > > ************************************************************** > ******** > > > ************************************************************** > ******** > Live Data Mapping Services with 4D v11 SQL > See it for yourself - http://www.4d.com/solutions/ndwater.html > > 4D Internet Users Group (4D iNUG) > FAQ: http://www.4D.com/support/faqnug.html > Archive: http://lists.4D.com/archives.html > Options: https://lists.4d.com/mailman/options/4d_tech > Unsub: mailto:4D_Tech-Unsubscribe@... > ************************************************************** > ******** ********************************************************************** Live Data Mapping Services with 4D v11 SQL See it for yourself - http://www.4d.com/solutions/ndwater.html 4D Internet Users Group (4D iNUG) FAQ: http://www.4D.com/support/faqnug.html Archive: http://lists.4D.com/archives.html Options: https://lists.4d.com/mailman/options/4d_tech Unsub: mailto:4D_Tech-Unsubscribe@... ********************************************************************** |
|
|
Re: v11.4 : 67 is a list referencePluto,
can't be, BC promised me last year there will be no v11.5 - or doesn't my memory serve well? :) Am 07.07.2009 um 15:44 schrieb Pluto Ng: > I presume they mean v11.5. Greetings, [4D-Consulting.com]eK, Wiesbaden (Germany) Peter Schumacher -------------------------------------------------------- Web: http://www.4D-Consulting.com/ FreeCall: 0800-434 636 7 Tel.: +49-611-9406.850 - Fax: +49-611-9406.744 4D-Consulting.com eK - Scharnhorststr. 36 - 65195 Wiesbaden Member of the German Developer Network http://www.die4dwerkstatt.de ********************************************************************** Live Data Mapping Services with 4D v11 SQL See it for yourself - http://www.4d.com/solutions/ndwater.html 4D Internet Users Group (4D iNUG) FAQ: http://www.4D.com/support/faqnug.html Archive: http://lists.4D.com/archives.html Options: https://lists.4d.com/mailman/options/4d_tech Unsub: mailto:4D_Tech-Unsubscribe@... ********************************************************************** |
|
|
Re: v11.4 : 67 is a list referencePeter,
But we can still have 11.4r1, r2, r3,... After hotfix 3, 4, 5,... Or maybe some old fashion minor versions, like 11.4.1, 11.4.2,... Remember the good old times. ;-) Koen Op 7-jul-09, om 15:53 heeft Peter Schumacher het volgende geschreven: > can't be, BC promised me last year there will be no v11.5 - or > doesn't my memory serve well? :) -------------------- Compass bvba Koen Van Hooreweghe Kloosterstraat 65 9910 Knesselare Belgium bvbaCompass@... ********************************************************************** Live Data Mapping Services with 4D v11 SQL See it for yourself - http://www.4d.com/solutions/ndwater.html 4D Internet Users Group (4D iNUG) FAQ: http://www.4D.com/support/faqnug.html Archive: http://lists.4D.com/archives.html Options: https://lists.4d.com/mailman/options/4d_tech Unsub: mailto:4D_Tech-Unsubscribe@... ********************************************************************** |
|
|
Re: v11.4 : 67 is a list referenceWith v11 having introduced universioning as well as unicode, there's
still a lot of room for improving, as in v11.4 rFF hfFF... --Bill On Jul 7, 2009, at 9:53 AM, Peter Schumacher wrote: > Pluto, > > can't be, BC promised me last year there will be no v11.5 - or > doesn't my memory serve well? :) > > Am 07.07.2009 um 15:44 schrieb Pluto Ng: > >> I presume they mean v11.5. > ********************************************************************** Live Data Mapping Services with 4D v11 SQL See it for yourself - http://www.4d.com/solutions/ndwater.html 4D Internet Users Group (4D iNUG) FAQ: http://www.4D.com/support/faqnug.html Archive: http://lists.4D.com/archives.html Options: https://lists.4d.com/mailman/options/4d_tech Unsub: mailto:4D_Tech-Unsubscribe@... ********************************************************************** |
|
|
Re: v11.4 : 67 is a list reference> I have filed a bug report, ACI0062635. QA has replied that this has been fixed in v11.4. I presume they mean v11.5.
The fix will be available in the next v11.4 ( rFF hfFF) .... :o) Amicalement, Jérôme ---------------------------------------------- Let the rhino keep its horn - Jul 7,2006 West Africa's version of the black rhino appears to be extinct, the World Conservation Union said on Friday. (Reuters) http://www.worldcommunitygrid.org/ : 4D DevTeam ---------------------------------------------- ********************************************************************** Live Data Mapping Services with 4D v11 SQL See it for yourself - http://www.4d.com/solutions/ndwater.html 4D Internet Users Group (4D iNUG) FAQ: http://www.4D.com/support/faqnug.html Archive: http://lists.4D.com/archives.html Options: https://lists.4d.com/mailman/options/4d_tech Unsub: mailto:4D_Tech-Unsubscribe@... ********************************************************************** |
| Free embeddable forum powered by Nabble | Forum Help |