Re: [Gambas-user] Setting and environment variable in a Gambas app.

2009-11-19 Thread BenoƮt Minisini
> Hi, > Setting the GDK_NATIVE_WINDOWS var in the environment tab of the project > only works while using the gambas app within the IDE but with the > generated executable this var doesn't get set, and so the controls get > erroneously rendered. > About setting it in ~/.gnomerc the point was not ha

Re: [Gambas-user] Setting and environment variable in a Gambas app.

2009-11-16 Thread Toni
Hi, Setting the GDK_NATIVE_WINDOWS var in the environment tab of the project only works while using the gambas app within the IDE but with the generated executable this var doesn't get set, and so the controls get erroneously rendered. About setting it in ~/.gnomerc the point was not having to s

Re: [Gambas-user] Setting and environment variable in a Gambas app.

2009-11-16 Thread Joshua Higgins
> > Application.Env["GDK_NATIVE_WINDOWS"]=1 > I can't seem to get this working. Instead, I put it in the environment tab of the project properties in the IDE, and that works. -- Let Crystal Reports handle the reporting - F

Re: [Gambas-user] Setting and environment variable in a Gambas app.

2009-11-15 Thread bbb888
Toni Rosa wrote: > > Hi, > I would like to automatically set and environment variable whenever my > gambas application gets launched (I want to make sure that > GDK_NATIVE_WINDOWS=1) and I have tried executing SHELL("export > GDK_NATIVE_WINDOWS=1") . Unfortunately it doesn't seem to work. > I'm

Re: [Gambas-user] Setting and environment variable in a Gambas app.

2009-11-15 Thread Joshua Higgins
Under Ubuntu at least you can put it in ~/.gnomerc http://ubuntuforums.org/showthread.php?t=1299284 Hope this helps. -- joshua higgins >>-- -- Let Crystal Reports handle the reporting - Free Crystal Reports 2008

[Gambas-user] Setting and environment variable in a Gambas app.

2009-11-15 Thread Toni Rosa
Hi, I would like to automatically set and environment variable whenever my gambas application gets launched (I want to make sure that GDK_NATIVE_WINDOWS=1) and I have tried executing SHELL("export GDK_NATIVE_WINDOWS=1") . Unfortunately it doesn't seem to work. I'm trying to accomplish that anyone i