Re : [fpc-pascal] TEventLog.FileName : Hot to do an append to existing log file

2010-09-22 Thread phoebus phoebus
Hi, >> This is currently not possible. Please file a feature request in the >>bugtracker. I raised into bugtracker the id: 0017464 for this feature. Regards, Phoebus  ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepasc

Re: [fpc-pascal] TEventLog.FileName : Hot to do an append to existing log file

2010-09-22 Thread Michael Van Canneyt
On Wed, 22 Sep 2010, phoebus phoebus wrote: Hi, I'm not understand how to use unit Teventlog to no create each time a new file but to append to an existing log file. I want to do something like:   assign(f,filename);   if FileExists(filename) then Append(f)   else

[fpc-pascal] TEventLog.FileName : Hot to do an append to existing log file

2010-09-22 Thread phoebus phoebus
Hi, I'm not understand how to use unit Teventlog to no create each time a new file but to append to an existing log file. I want to do something like:   assign(f,filename);   if FileExists(filename) then Append(f)   else Rewrite(f);   Writeln(f,FormatDateTime('dd/mm/