Re: [Iup-users] IupGridBox

2016-12-23 Thread Andrew Robinson
Wow! You are fantastic! That helped but it turns out it was just a stupid, small typo on my part, and if I hadn't of looked at your code, it would have taken me forever to notice it in my code. Just a few questions that aren't important but am curious about: 1) What is your logic behind putting t

Re: [Iup-users] IupGridBox

2016-12-23 Thread Antonio Scuri
Notice that "IupSetAttribute*s"* actually returns the same Ihandle* that receives. It is different from "IupSetAttribute". So you can get control if needed. I changed the gridbox.c sample to include your code. It is attached. This is the resul: [image: Inline image 1] Best, Scuri On Fri

Re: [Iup-users] IupGridBox

2016-12-23 Thread Andrew Robinson
Thanks for a very quick response. I find that I whether I have NULL or not for the second parameter of IupLabel, makes no difference to the output. For 64-bit programs passing two parameters, all that NULL would do is set RDX to zero, which generally has no effect on programs. But is that all you

Re: [Iup-users] IupGridBox

2016-12-23 Thread Antonio Scuri
Hi, There is a small error at the label creation: Ihandle *lbl1 = IupLabel("Label_1", NULL); Ihandle *lbl2 = IupLabel("Label_2", NULL); Should be: Ihandle *lbl1 = IupLabel("Label_1"); Ihandle *lbl2 = IupLabel("Label_2"); The result is something like: [image: Inline image 1] It need

Re: [Iup-users] iOS IUP initial implementation

2016-12-23 Thread Antonio Scuri
Thanks for sharing. Best, Scuri On Fri, Dec 23, 2016 at 11:26 AM, Eric Wing wrote: > Hi all, > Here is the iOS counterpart to the Android prototype I just did. > > https://github.com/ewmailing/IupCocoaTouch > Switch to CocoaTouch branch > > I will say more about both of these when I get the c

[Iup-users] iOS IUP initial implementation

2016-12-23 Thread Eric Wing
Hi all, Here is the iOS counterpart to the Android prototype I just did. https://github.com/ewmailing/IupCocoaTouch Switch to CocoaTouch branch I will say more about both of these when I get the chance. Thanks, Eric --