Fred vS

Results 166 comments of Fred vS

Hello Roland. I try this: ``` program strumpract; ... begin Assign(ErrOutput, 'error.log'); Rewrite(ErrOutput); ... Application.run; Close(ErrOutput); end. ``` A empty _error.log_ is created this but the console-messages are still there....

Hello Roland. Thanks to Warfley in Lazarus forum: ``` program errorlog; uses Classes, BaseUnix; ... var fs: TFileStream; begin fs := TFileStream.Create('error.log', fmOpenReadWrite or fmCreate); FpDup2(fs.Handle, StdErrorHandle); ... Application.run; fs.free;...

Hello Roland and happy new all. I just checked the code of escheccs/sound.pas and indeed there are wrong parameters. I apologize, there is one zero too much after the comma...

Hello Roland. If it does not annoy you too much, I will be very interested to know if there are still problems with your old sound files changing the latency....

Re-re hello Roland. If you have still energy, could you try the executable included in attach (for Linux 64 bit) ? It is the compiled example from _/uos/examples/deviceinfos_fpgui.pas_ with needed...

Hum..., strange, ... And did you have problems with all the older files or only with few ( could you give the names of that files, I have still the...

To be sure we are talking about the same version of Eschecs. I do the test from the release _eschecs-5.0.6-lin64_ from here: https://github.com/rchastain/eschecs/releases/tag/5.0.6 Here using the "move" from menu item...

![uos2](https://user-images.githubusercontent.com/3421249/71642778-1fa59400-2cb1-11ea-953b-06658f3b986d.png)

Hello. _Nabble_ has moved his servers. The new address of _uos_ forum is: http://uos-forum.108.s1.nabble.com

Hello. No, sorry, I dont have any Delphi version installed and so cannot update uos to be Delphi compatible. But the good news is that uos is open-source and any...