RE: Suppressing command window

2006-11-28 Thread Michael Torrie
Lillqvist Sent: Friday, November 24, 2006 5:57 PM To: gtk-app-devel-list@gnome.org Subject: Re: Suppressing command window Sai Korada writes: I'm developing an application with GTK+ and created a batch file to set the path, launch the application with command line arguments. ... presumably

RE: Suppressing command window

2006-11-27 Thread Sai Korada
:[EMAIL PROTECTED] On Behalf Of Tor Lillqvist Sent: Friday, November 24, 2006 5:57 PM To: gtk-app-devel-list@gnome.org Subject: Re: Suppressing command window Sai Korada writes: I'm developing an application with GTK+ and created a batch file to set the path, launch the application with command

Re: Suppressing command window

2006-11-27 Thread Jim George
I tried using getenv() and putenv(), but it is not working as expected. That would be the right way. Could you give some more details on why it doesn't work? Or how it fails? Does setenv return -1? What is errno set to? I've packaged the application along with the required GTK dlls in a zip

Re: Suppressing command window

2006-11-27 Thread Daniel Atallah
On 11/27/06, Sai Korada [EMAIL PROTECTED] wrote: I've packaged the application along with the required GTK dlls in a zip file. Created a batch file, which, appends the current gtk\bin path to local path and then launch the application. And the console window, which was opened by the batch

RE: Suppressing command window

2006-11-27 Thread Sai Korada
Thank you very much Daniel, it worked. At the moment I've chosen the first option to demonstrate to the customer and later I'll try with other options too. Thanks a lot Regards Sai Laxmi ___ gtk-app-devel-list mailing list

RE: Suppressing command window

2006-11-27 Thread Sai Korada
Thanks for your suggestions Jim, getenv(), putenv() are returning success as such. But when the application is being loaded immediately it will through gtk error, and closes the application. The same command, prepending (./GTK/bin;) to the current path works fine and the application launches

Suppressing command window

2006-11-24 Thread Sai Korada
Hi, I'm developing an application with GTK+ and created a batch file to set the path, launch the application with command line arguments. Even after launching the application the command window still appears, which is by default. My requirement is, once the application is launched, is there a way

Re: Suppressing command window

2006-11-24 Thread Tor Lillqvist
Sai Korada writes: I'm developing an application with GTK+ and created a batch file to set the path, launch the application with command line arguments. ... presumably on Windows? Even after launching the application the command window still appears, which is by default. My requirement