Re: [lazarus] Headless sip client?

2007-03-30 Thread Luca Olivetti
En/na Luca Olivetti ha escrit: Hello, I'm trying to use an usb phone under Linux. I already successfully used Lazarus with libusb to quickly test the communication protocol that I reverse engineered, so I can control the phone. My ultimate goal is to connect the phone to a headless server,

Re: [lazarus] Headless sip client?

2007-03-30 Thread Luca Olivetti
En/na ik ha escrit: Hi, Please try the soft-phone called twinkle (by the house of KDE), or if you simply wish to create tests for SIP, use SIPp (http://sipp.sourceforge.net/). Hi, yes, I normally use twinkle, but for this project isn't really suitable, unless there's a way to make it work

Re: [lazarus] Headless sip client?

2007-03-30 Thread ik
Have you tried using it using dcop ? Ido On 3/30/07, Luca Olivetti [EMAIL PROTECTED] wrote: En/na ik ha escrit: Hi, Please try the soft-phone called twinkle (by the house of KDE), or if you simply wish to create tests for SIP, use SIPp (http://sipp.sourceforge.net/). Hi, yes, I normally

Re: [lazarus] Headless sip client?

2007-03-30 Thread Luca Olivetti
En/na ik ha escrit: Have you tried using it using dcop ? No, I wouldn't even know how to start (and a quick search on the freepascal site, either using its search or google, doesn't offer any hint). And then it has to be seen if it could work on an arm machine, with limited memory and no X

Re: [lazarus] 0.9.22 released

2007-03-30 Thread Andrew Haines
Mattias Gaertner wrote: The Lazarus team is glad to announce the 0.9.22 release. This release is based on fpc 2.0.4. This release can be downloaded from the sourceforge download page: http://sourceforge.net/project/showfiles.php?group_id=89339 Lazarus is ranked 109 today on sourceforge!

[lazarus] read big file and store info

2007-03-30 Thread Andrea Mauri
Dear all. I need to read big text file and store the starting position and length of blocks that are present in this file. I have text file with a tag that identifies the beginning of a text block (this tag in the example is - start -) and a tag that identifies where my block finish (i.e. -

[lazarus] 0.9.22 released

2007-03-30 Thread Mattias Gaertner
The Lazarus team is glad to announce the 0.9.22 release. This release is based on fpc 2.0.4. This release can be downloaded from the sourceforge download page: http://sourceforge.net/project/showfiles.php?group_id=89339 Detailed list of changes: LazDaemon: a package providing components and IDE

Re: [lazarus] Anybody on this list use Firebird database with Lazarus?

2007-03-30 Thread Howard Lee Harkness
I finally got Firebird installed and tested on my home system, so I am now in a position to start checking out how to access it with Lazarus. I've got some time this weekend set aside to work on migrating a 19-year-old database application that I wrote for an attorney (originally using Turbo

Re: [lazarus] 0.9.22 released

2007-03-30 Thread Steven Graham
Mattias Gaertner wrote: The Lazarus team is glad to announce the 0.9.22 release. This release is based on fpc 2.0.4. This release can be downloaded from the sourceforge download page: http://sourceforge.net/project/showfiles.php?group_id=89339 Great job guys! 0.9.22 feels a lot more

Re: [lazarus] PostgreSQL

2007-03-30 Thread Bram Kuijvenhoven
Joost van der Sluis wrote: On Thu, 2007-03-29 at 14:52 +0200, Bram Kuijvenhoven wrote: Darmawan Sugiarto wrote: It's OK... now I know If I don't have this error if I compile my code in first time... but the second, third, and soon I have this error... So I restart Lazarus and my code work

Re: [lazarus] Anybody on this list use Firebird database with Lazarus?

2007-03-30 Thread Lee Jenkins
Howard Lee Harkness wrote: One of the utilities that was foresighted enough to write was one that dumps all of the tables into CSV format. Any recommendations for the best way to get a CSV file imported into a Firebird database? Not for lazarus. I have have some nice components for that

[lazarus] SynEdit Docs

2007-03-30 Thread Lee Jenkins
Do these exist in any form? I have the source and it does not tell me what some things mean like this below. Assumes a bit more that I know personally synedit, etc. Thanks for any pointers. -- Warm Regards, Lee _ To

Re: [lazarus] Anybody on this list use Firebird database with Lazarus?

2007-03-30 Thread [EMAIL PROTECTED]
You can load your file with a TFixedFormatDataSet or a TSdfDataSet, and then copy to a dataset connected to the Firebird database. Howard Lee Harkness wrote: One of the utilities that was foresighted enough to write was one that dumps all of the tables into CSV format. Any recommendations

Re: [lazarus] SynEdit Docs

2007-03-30 Thread Flávio Etrusco
Like what below? There's no documentation for the official SynEdit, and AFAIK neither for the Lazarus version. Regards, Flávio On 3/30/07, Lee Jenkins [EMAIL PROTECTED] wrote: Do these exist in any form? I have the source and it does not tell me what some things mean like this below.

[lazarus] DB Image List and thumbnails

2007-03-30 Thread Charl van Jaarsveldt
Hello, I am storing filenames of pictures in a database and would like to have a TListView type control that can show it as icons or in report mode. (I guess I can use a DBGrid for the report view). I can't find any DB-aware component to show a list of images from a database, so I thought I

Re: [lazarus] PostgreSQL

2007-03-30 Thread Darmawan Sugiarto
could not translate hostname localhost to address : Unknow host Bram Kuijvenhoven [EMAIL PROTECTED] wrote: Joost van der Sluis wrote: On Thu, 2007-03-29 at 14:52 +0200, Bram Kuijvenhoven wrote: Darmawan Sugiarto wrote: It's OK... now I know If I don't have this error if I compile my code in

Re: [lazarus] Anybody on this list use Firebird database with Lazarus?

2007-03-30 Thread Uwe Grauer
Howard Lee Harkness wrote: I finally got Firebird installed and tested on my home system, so I am now in a position to start checking out how to access it with Lazarus. I've got some time this weekend set aside to work on migrating a 19-year-old database application that I wrote for an

RE: [lazarus] Document editing (doc, rtf) and/or interfacing with external editors

2007-03-30 Thread Hess, Philip J
Starting OO via Automation on Windows is not difficult. Here's an example in Delphi that starts OO and opens a new document. This code crashes with FPC. program TestOO; uses SysUtils, Variants, ComObj; const OOServerName = 'com.sun.star.ServiceManager'; var Server : Variant;

Re: [lazarus] PostgreSQL

2007-03-30 Thread Darmawan Sugiarto
Congratulation Lazarus 9.0.22 is already solve this problem thanks to developer Now I can connect to PostgreSQL server many time Darmawan Sugiarto [EMAIL PROTECTED] wrote: could not translate hostname localhost to address : Unknow host Bram Kuijvenhoven [EMAIL PROTECTED]