Re: -mwindows and hour glass

2007-06-18 Thread Christopher Wingert
Ummm, Ok, thanks for the response, but the program is... bof #include stdio.h int main( int argc, char *argv[] ) { sleep( 5 ); } eof # gcc t.c -o t -Wl,--subsystem,windows Starting this from explorer results in a 5 second busy hour glass and (of course), explorer is unresponsive until the

RE: -mwindows and hour glass

2007-06-18 Thread Dave Korn
On 18 June 2007 23:18, Christopher Wingert wrote: Ummm, Ok, thanks for the response, but the program is... bof #include stdio.h int main( int argc, char *argv[] ) { sleep( 5 ); } eof # gcc t.c -o t -Wl,--subsystem,windows Starting this from explorer results in a 5 second

Re: -mwindows and hour glass

2007-06-18 Thread Christopher Faylor
On Tue, Jun 19, 2007 at 12:10:22AM +0100, Dave Korn wrote: On 18 June 2007 23:18, Christopher Wingert wrote: Ummm, Ok, thanks for the response, but the program is... bof #include stdio.h int main( int argc, char *argv[] ) { sleep( 5 ); } eof # gcc t.c -o t

Re: -mwindows and hour glass

2007-06-18 Thread Brian Dessent
Dave Korn wrote: Starting this from explorer results in a 5 second busy hour glass and (of course), explorer is unresponsive until the program ends. Can't reproduce. What version of 'doze are you using? I get the hour-glass-with-arrow cursor for five seconds, but explorer still

Re: -mwindows and hour glass

2007-06-17 Thread morgan gangwere
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Christopher Wingert wrote: I am trying to write a small program that does not pop up a window. I found the -mwindow option. It does not pop up a window, but while the program is running explorer shows the hour glass busy cursor until the

-mwindows and hour glass

2007-06-16 Thread Christopher Wingert
I am trying to write a small program that does not pop up a window. I found the -mwindow option. It does not pop up a window, but while the program is running explorer shows the hour glass busy cursor until the application ends. I am assuming that explorer is waiting for a window to appear. Is