Re: terminal

1999-04-03 Thread Glynn Clements
James wrote: how do i turn off the cursor This is terminal-specific; some terminals may not allow the cursor to be disabled. If it can be done, you need to send the string which corresponds to the `civis' terminfo entry (`vi' termcap entry). and make my programs accept characters typed

Database Programming

1999-04-03 Thread Tim - HOWTO Coordinator
Could someone recommend some documentation, sites/links, books or code snippets for database programming under C? I'm looking for something that will start off pretty slow and won't be too overwhelming if that's at all possible. ;) Any and all help would be greatly appreciated. Best Regards,

Re: overlapping two gif files

1999-04-03 Thread Joseph Durbin
here ya go, this should be perfect. http://www.unimelb.edu.au/fly/fly.html use this, or just the gd lib. -Joe Wei Weng wrote: No. That is not what i meant. I am looking for a way or a as small as possible program that I can run under command line that can overlap two gifs. say the command

compiling with .so library files

1999-04-03 Thread D. Jackson Peacock
hi, Im teaching myself to program in c and im having a real hard time figuring out how to get gcc to know how to find the functions it need from shared object files when linking. I'm currently working on the first simple gtk program that's in the gtk info page. when i try to compile I get the

Re: Database Programming

1999-04-03 Thread Karl F. Larsen
On Sat, 3 Apr 1999, Tim - HOWTO Coordinator wrote: } } Could someone recommend some documentation, sites/links, books or code } snippets for database programming under C? Hi Tim, I'm not clear what your in mind of doing. Do you want to write a special database application, or do you

Re: compiling with .so library files

1999-04-03 Thread Torbjørn Kristoffersen
On Sat, 3 Apr 1999, D. Jackson Peacock wrote: Hi. $ gcc -o gtktest gtktest.c You need to use $ gcc `gtk-config --cflags` `gtk-config --libs` gtktest.c -o gtktest Or you could write this as well: $ gcc -I/usr/local/lib/glib/include -I/usr/local/include \