Re: [fpc-pascal] serial.pp - I can't talk to modem

2008-01-03 Thread Michael Müller
Am 02.01.2008 um 15:39 schrieb Bernd Mueller: Graeme Geldenhuys wrote: SerWrite(serialhandle, s, Length(s)); SerWrite(serialhandle, s[1], Length(s)); Why not adding an overloaded SerWrite() that simply expects a string? procedure SerWrite(handle, string); begin SerWrite(handle, strin

Re: [fpc-pascal] Maybe a new fpc book :)

2008-01-03 Thread Joost van der Sluis
Op woensdag 02-01-2008 om 12:35 uur [tijdzone -0500], schreef Anthony W. Henry: > I recently responded to a question on the community board > asking about an fpc book by recommending a Turbo Pascal > book by Jeff Duntemann. His book started me out as a Pascal > programmer in 1989 and I still find

Re: [fpc-pascal] Maybe a new fpc book :)

2008-01-03 Thread Anthony W. Henry
> > Mr. Duntemann has also written other programming books and > > was employed by Borland for a while as a technical writer. I have > > found his books to be the best available for learning Pascal. > > > > When I responded to the board question it started a train of > > thought that resu

Re: [fpc-pascal] serial.pp - I can't talk to modem

2008-01-03 Thread Graeme Geldenhuys
On 03/01/2008, Michael Müller <[EMAIL PROTECTED]> wrote: > > Why not adding an overloaded SerWrite() that simply expects a string? Funny you mention that. I was actually thinking the same thing - adding a helper method which takes a string parameter and auto adds the CR (#13) character to the end