Re: [fpc-pascal] Daemon doesn't work right at boottime.

2006-06-02 Thread Geno Roupsky
) and if you don't specify absolute paths or manually fill it the required programs could not be located. Also look for something else from the environment that your program depends on. Try to clear the environment in the shell and try to run the init script and see what will happen.-- Geno Roupsky

Re: [fpc-pascal] sort procedure of T(FP)List

2006-05-07 Thread Geno Roupsky
2006/5/6, Marc Santhoff [EMAIL PROTECTED]: Am Freitag, den 05.05.2006, 11:03 +0300 schrieb Geno Roupsky: In fact you could have different function for every kind of sort and switch them on the fly when the properties determining the kind of sort that should be made changes. In my experience

Re: [fpc-pascal] no output window displayed

2006-05-06 Thread Geno Roupsky
fpc.exe. You should see a complete list of options supported by the compiler. If for any reason the fpc could not start it will display a useful error message and you should post it in here to get more help. -- Geno Roupsky ___ fpc-pascal maillist - fpc

Re: [fpc-pascal] Lazarus.

2006-05-06 Thread Geno Roupsky
2006/5/5, Geoff Bagley [EMAIL PROTECTED]: I would like to hear from anyone using Lazarus/Free-Pascal onDebian GNU/Linux.What do you want to hear?-- Geno Roupsky ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org

Re: [fpc-pascal] sort procedure of T(FP)List

2006-05-06 Thread Geno Roupsky
in this technique and you could make for example one compare function for every field, after that you make a _complex_ ones calling the simple ones. Either way it is not very OO based approach but of course you could make a descendand class of tfplist and add you own sorting code.-- Geno Roupsky

Re: [fpc-pascal] string comparison on various platforms

2006-05-06 Thread Geno Roupsky
a bug it is most probably due to miss configuring the OS locale definitions.-- Geno Roupsky ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal

Re: [fpc-pascal] Constant object

2006-05-05 Thread Geno Roupsky
maillist-fpc-pascal@lists.freepascal.orghttp://lists.freepascal.org/mailman/listinfo/fpc-pascal -- Geno Roupsky ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal

Re: [fpc-pascal] Bit manipulation

2006-02-21 Thread Geno Roupsky
it is as simple as this: function isset(value: dword; bit: byte): boolean; begin result := value and (1 shl pred(bit)) 0; end;2006/2/20, Pianoman [EMAIL PROTECTED]: Hi, I need to know how can I see whether a certain bit of byte/word/dword isset:or not:function like this would be

Re: [fpc-pascal] Graph Unit

2006-02-14 Thread Geno Roupsky
В пн, 2006-02-13 в 23:15 -0800, Ryo T написа: How to use unit Graph in fpc ? == 12y0 The ~'S'~ here is the documentation for the graph unit: http://www.freepascal.org/docs-html/rtl/graph/index.html a simple test program is attached program graphex; uses Graph; var