Re: Circumflex strangeness with v15 on OS X 10.10.5

2017-05-11 Thread Paul Lovejoy via 4D_Tech
Hi Miyako, The users are based in Europe and have keyboards which make entering these accented characters quite easy. There is one key for the “^” and the system waits for a vowel over which it will be placed. With this bug, the user winds up with the “^” on the vowel as well as stand-alone. I

Re: Problems with LISTBOX SET FOOTER CALCULATION and dynamic columns (v15)

2017-05-11 Thread Kirk Brooks via 4D_Tech
Hey Lahav, You are correct - thanks for saying something. It prompted me to go look at my actual code which is pretty similar: get the current doc values obj $obj:=JSON Parse("{}") $obj:=IG_get_curDocValues ($igPtr) For ($i;1;Size of array(aIG_ftrVars)) OBJECT SET RGB COLORS(aIG_ftrVars{

RE: Problems with LISTBOX SET FOOTER CALCULATION and dynamic columns (v15)

2017-05-11 Thread lists via 4D_Tech
Hi Kirk, The issue is the inability to use any of the automatic footer calculations such as SUM or AVG in a footer of a numeric column, since regardless of what type the column is, the dynamic footer variables are always of type Text. This is how I have it working (Yes, it's ugly and there migh

Re: Problems with LISTBOX SET FOOTER CALCULATION and dynamic columns (v15)

2017-05-11 Thread Kirk Brooks via 4D_Tech
Hi Olivier, It's so interesting when someone follows up on a post from a year and a half ago. I haven't used this code in v16 yet. But in general what I've found most reliable when fiddling with dynamic variables and listboxes is to let 4D tell you what it did by using the LISTBOX GET ARRAYS comma

AW: Problems with LISTBOX SET FOOTER CALCULATION and dynamic columns (v15)

2017-05-11 Thread Flury Olivier via 4D_Tech
Kirk & Miyako, I am struggling with the same problem, works interpreted but not compiled. The type of the dynamic footer variable remains "2" (text). Tested with 4D 16.1. Or did you figure out a way to make it work? If not, and if this is the way it works (not possible to re-type a dynamic var

Re: Hex Colour Picker in Listbox

2017-05-11 Thread Keisuke Miyako via 4D_Tech
a good place to start would be: Select RGB Color http://doc.4d.com/4Dv16/4D/16.1/Select-RGB-Color.301-3374833.en.html OPEN COLOR PICKER http://doc.4d.com/4Dv16/4D/16.1/OPEN-COLOR-PICKER.301-3374843.en.html > 2017/05/11 17:47、Douglas Cryer via 4D_Tech <4d_tech@lists.4d.com> のメール: > > Automatical

Re: Circumflex strangeness with v15 on OS X 10.10.5

2017-05-11 Thread Keisuke Miyako via 4D_Tech
how is the user typing the circumflex character? assuming the U.S. keyboard layout is used, option+I would enter a combining circumflex with yellow background. following it with another letter would yield the accented character. but other keyboard layouts (U.S. extended, or FR, for example) have ot

Re: PDF Manuals for v16

2017-05-11 Thread Keisuke Miyako via 4D_Tech
Hello, we (4D Japan) used the same process to publish our PDF documentation in Japanese, the files are uploaded here for your convenience: http://library.4d-japan.com/REFERENCE/v16/EN/ > Any information when we can expect the PDF-Manuals for v16? *

Re: Disable close button on Splash screen windows v12

2017-05-11 Thread Douglas von Roeder via 4D_Tech
John: Just snarfed this from a legacy application and watched the code execute. $Error_Code:=gui_SetWndRect ($Window_Handle;0;0;<>WND_vWindow_Width;<>WND_vWindow_Height) $Error_Code:=gui_SetWindowLong ($Window_Handle;WS_THICKFRAME | WS_MAXIMIZEBOX;WIN_DISABLE;WIN_STYLE) $Error_Code:=gui_DisableCl

[OFF] I need an OAuth tutor

2017-05-11 Thread Kirk Brooks via 4D_Tech
I have a project that requires having 4D connect via OAuth. I know this totally doable but I just keep getting stuck. So, I'd like to hire someone who knows this stuff to tutor me for an hour or two. I'm thinking we do a Teamviewer session or similar. Contact me off line if you're interested. Tha

Re: Preemptive mode flaw

2017-05-11 Thread David Adams via 4D_Tech
Jeff and David, thanks for the update. I don't know why we don't have direct access to TAOW, but I'm glad to hear that it works well & is available to the bulk of 4D developers. ** 4D Internet Users Group (4D iNUG) FAQ: http://lis

Re: Number display format - trailing spaces

2017-05-11 Thread Malcolm Stone via 4D_Tech
>How about String(number;"|yourPreferredFormat") and set it right justified? >Not sure, but try non breakable space instead of char32. Thanks for the suggestions. Alas, the problem remains. Interesting result in testing: ARRAY REAL(aNum;0) ARRAY TEXT(aText;0) C_LONGINT($i) //create two arrays f

Re: Number display format - trailing spaces

2017-05-11 Thread Arnaud de Montard via 4D_Tech
> Le 11 mai 2017 à 18:58, Malcolm Stone via 4D_Tech <4d_tech@lists.4d.com> a > écrit : > > Resurrecting a question for which I haven't seen an answer: > > If I choose the built-in format "###,##0.00 ;###,##0.00CR" Not sure, but try non breakable space instead of char32. -- Arnaud de Montar

Re: Button Variables

2017-05-11 Thread Chip Scheide via 4D_Tech
I realized after sending that there should be 2 parameters not one form event, and current form page rather then checking the form page inside the project method. On Thu, 11 May 2017 14:31:06 -0400, Chip Scheide via 4D_Tech wrote: > no, only the script in the button you clicked should run. > > B

Re: Number display format - trailing spaces

2017-05-11 Thread Alan Chan via 4D_Tech
How about String(number;"|yourPreferredFormat") and set it right justified? Alan Chan 4D iNug Technical <4d_tech@lists.4d.com> writes: >Resurrecting a question for which I haven't seen an answer: > >If I choose the built-in format "###,##0.00 ;###,##0.00CR" >Forms, list boxes and quick reports l

Re: Button Variables

2017-05-11 Thread Chip Scheide via 4D_Tech
no, only the script in the button you clicked should run. BUT why not 1 button, on page zero? it is simpler to mange only one bit of code to handle, and if there are parts of the code which are identical you can have that code existing in only one place, making updates or changes simple. AND by ha

Re: Button Variables

2017-05-11 Thread Kirk Brooks via 4D_Tech
Peter, A couple of thoughts. On Thu, May 11, 2017 at 11:05 AM, Peter Mew via 4D_Tech < 4d_tech@lists.4d.com> wrote: > Hi > I have a form with 4 pages. > each page has a button to create a new record. > Each button also does some slightly different stuff depending which page > its on. > Which is w

Button Variables

2017-05-11 Thread Peter Mew via 4D_Tech
Hi I have a form with 4 pages. each page has a button to create a new record. Each button also does some slightly different stuff depending which page its on. Which is why there is a button on each page, rather than a single button on Page 0 All the buttons have the variable name bNewRecord. My que

Number display format - trailing spaces

2017-05-11 Thread Malcolm Stone via 4D_Tech
Resurrecting a question for which I haven't seen an answer: If I choose the built-in format "###,##0.00 ;###,##0.00CR" Forms, list boxes and quick reports look like: 123.45| 123.45CR| (difficult to model with proportional font - trying to show positive and negative both all the way to the ri

Circumflex strangeness with v15 on OS X 10.10.5

2017-05-11 Thread Paul Lovejoy via 4D_Tech
Hi everyone, We have noticed an annoying issue with the circumflex character (^) on OS X 10.10.5. If a user wants to write the word capôter, the circumflex “^" is typed before typing the “o". The system then placed the circumflex on top of the o to produce “ô". What we are seeing is cap^ôte

Re: Preemptive mode flaw

2017-05-11 Thread David Samson via 4D_Tech
I can second this. The TAOW system is well monitored and responsive. > I have to say that the Taow system works really well, in my experience. -- D Samson ** 4D Internet Users Group (4D iNUG) FAQ: http://lists.4d.com/faqnug.h

Re: Hex Colour Picker in Listbox

2017-05-11 Thread Nigel Greenlee via 4D_Tech
Sorry meant to put a link on that https://www.dropbox.com/s/oxt7nh2q6w078iw/ComplimentaryColours?dl=0 > On 11 May 2017, at 09:47, Douglas Cryer via 4D_Tech <4d_tech@lists.4d.com> > wrote: > > Hello all, > > I have a list of colours in my system and I have a corresponding hex colour > code fi

Re: Hex Colour Picker in Listbox

2017-05-11 Thread Nigel Greenlee via 4D_Tech
Doug This may be of no use at all to you ..on the other hand.. Some while back i picked up a document off the web of complimentary colours I translated it into 4D Code. This helps if you are doing any kind of row shading, it just builds an array of RGB references and their colour names and has

Re: Hex Colour Picker in Listbox

2017-05-11 Thread Herr Alexander Heintz via 4D_Tech
Hi Doug, did you see my last blog post „Fun with colors"? http://blog.heintz.net it has some handy tools when it comes to colors, maybe there is something that could hep you solve this Cheers Alex > Am 11.05.2017 um 10:47 schrieb Douglas Cryer via 4D_Tech > <4d_tech

Hex Colour Picker in Listbox

2017-05-11 Thread Douglas Cryer via 4D_Tech
Hello all, I have a list of colours in my system and I have a corresponding hex colour code field but nobody has really used it. I want to do a few things: Automatically map common colours to hex colours (via a lookup Provide a hex colour picker that I can use in a listbox Use the returned/edite

Re: POINTER TO ARRAY

2017-05-11 Thread Arnaud de Montard via 4D_Tech
> Le 11 mai 2017 à 02:49, Chuck Miller via 4D_Tech <4d_tech@lists.4d.com> a > écrit : > > Pointers to locals do work. I pass locals via pointer from method to method > all of the time Yes, but here the thing pointed is one of those variables created "on the fly" with Get pointer("aStringUnkno