Re: [Gambas-user] New feature in /trunk

2009-05-27 Thread Benoît Minisini
> Got this error compiling new rev at Mandriva 2009.1 32Bits > > debug.c: In function 'command_eval': > debug.c:726: error: too few arguments to function 'EVAL.Compile' > make[5]: *** [debug.lo] Error 1 > make[5]: se sale del directorio `/home/david/Gambas3/main/lib/debug' > > > Saludos > > > -- >

Re: [Gambas-user] New feature in /trunk

2009-05-27 Thread David Villalobos Cambronero
27; Saludos -- David - Original Message From: Benoît Minisini To: gambas-user@lists.sourceforge.net Sent: Tuesday, May 26, 2009 4:55:04 PM Subject: [Gambas-user] New feature in /trunk Hi, I just added a new feature in the development version: the Assign() function. It is like Eval(), excep

[Gambas-user] New feature in /trunk

2009-05-26 Thread Benoît Minisini
Hi, I just added a new feature in the development version: the Assign() function. It is like Eval(), except that the expression can be an assignment. It returns the assigned value. For example: Dim hCtrl As Control ' Any control Assign("a.Text = \"Hello\"", ["a": hCtrl]) will assign the "Hell