[DUG]: 3 Month Contract, $50ish an hour, Fun stuff...

2000-11-13 Thread Mark Vrankovich
Hi there guys We have a 3 month contract starting real soon. Around $50 per hour. It involves the building of Mapping software (as in maps of physical areas, not object to relational mapping or any such thing). In other words fun stuff. Please contact me if you think you can do it, in Delphi

Re: [DUG]: Web Stuff

2000-11-13 Thread Mark Derricutt
On Mon, 13 Nov 2000, Sandeep wrote: I've never used PHP and ZOPE before. Can they access database files? PHP Rocks, and yes they can access databases, although at present there isn't really any abtracted database layer to make it easy to switch between various engines (although a few are in

[DUG]: database error.

2000-11-13 Thread Matthew Comb
Hi people, sorry to post a really vague message. Have franchisee in England reporting the following error message fragment. Does anyone recognise this? KNow what causes it? Dbhelp An error has occurred in your program Cheers, Matt.

Re: [DUG]: Web Stuff

2000-11-13 Thread Sandeep
PHP seems to do the same thing which a Webserver written in Delphi does i.e. replacing tags with supplied text. And then the web server must support php. How does it make it better than any other scripting language. Isn't it another language trying to make life more complicated. Why can't we

[DUG]: Interbase

2000-11-13 Thread Sandeep
The create table syntax in interbase has EXTERNAL [file], which tells it that the data resides in external file. Is it possible to link a dbf file using this syntax? If possible where can I find an example. Sandeep ---

RE: [DUG]: Web Stuff

2000-11-13 Thread Stephen Bertram
Delphi has proven extremely efficient in web development, especially when accessing databases. I'd add a caveat here - I've had great difficulty getting web applications to scale when using BDE. Using alternative database access has made life a lot easier. Stephen Bertram

RE: [DUG]: 3 Month Contract, $50ish an hour, Fun stuff...

2000-11-13 Thread David O'Brien
Is this a Mapinfo, MapX type of project? Dave. -Original Message- From: Mark Vrankovich [mailto:[EMAIL PROTECTED]] Sent: Monday, 13 November 2000 10:09 p.m. To: Multiple recipients of list delphi Subject: [DUG]: 3 Month Contract, $50ish an hour, Fun stuff... Hi there guys We have a 3

RE: [DUG]: Interbase

2000-11-13 Thread Myles Penlington
No. Interbase can only read/write files of it's own external format - which from memory is fixed length records. Myles. -Original Message- From: Sandeep [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 14, 2000 9:40 AM To: Multiple recipients of list delphi Subject: [DUG]: Interbase

Re: [DUG]: Web Stuff

2000-11-13 Thread Mark Derricutt
On Tue, 14 Nov 2000, Sandeep wrote: PHP seems to do the same thing which a Webserver written in Delphi does i.e. replacing tags with supplied text. And then the web server must support php. How does it make it better than any well, it does a bit more that just "replace tags with supplied

[DUG]: [Q] Traffic through NIC.....

2000-11-13 Thread Donovan J. Edye
G'Day, Can anyone give me some pointers on how I could go about tallying up the bytes sent and received via a NIC or Dial Up connection? TIA --Donovan [[EMAIL PROTECTED]] Donovan J. Edye [www.edye.wattle.id.au] Namadgi

RE: [DUG]: Web Stuff

2000-11-13 Thread Donovan J. Edye
G'Day, Can they access database files? PHP Rocks, and yes they can access databases, although at present there isn't really any abtracted database layer One of the abstraction layers out there can be found in PhpLib http://phplib.netuse.de/ And just to show you that anything is possible:

RE: [DUG]: [Q] KeyPreview, KeyDown, DB Aware Controls?

2000-11-13 Thread Donovan J. Edye
D, Yep, that was it. Thanks for the pointer. --Donovan [[EMAIL PROTECTED]] Donovan J. Edye [www.edye.wattle.id.au] Namadgi Systems, Delphi Developer [www.namsys.com.au] Voice: +61 2 6285-3460 Fax: +61 2 6285-3459

RE: [DUG]: Web Stuff

2000-11-13 Thread Patrick Dunford
How do you make PHP work on Win32 / PWS or Apache 1.3.14? So far not having a lot of success, can we take this to e-mail? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Donovan J. Edye Sent: Tuesday, 14 November 2000 11:03 To: Multiple recipients

RE: [DUG]: [Q] Traffic through NIC.....

2000-11-13 Thread Patrick Dunford
were still living by faith when they died. They did not receive the things promised; they only saw them and welcomed them from a distance. And they admitted that they were aliens and strangers on earth. -- Hebrews 11:13 http://www.heartlight.org/cgi-shl/todaysverse.cgi?day=20001113

RE: [DUG]: Web Stuff

2000-11-13 Thread Donovan J. Edye
P, can we take this to e-mail Sure How do you make PHP work on Win32 / PWS Had this working as ISAPI but then switched to CGI. Apache 1.3.14? This with CGI. Modified the httpd.conf (If I recall correctly) and it worked.. Let me know what specific problems, questioins you

RE: [DUG]: Web Stuff

2000-11-13 Thread Steve Peacocke
At 09:45 a.m. 14/11/2000 +1300, you wrote: Delphi has proven extremely efficient in web development, especially when accessing databases. I'd add a caveat here - I've had great difficulty getting web applications to scale when using BDE. Using alternative database access has made life a lot

Re: [DUG]: incredible and horrible.

2000-11-13 Thread Leigh Wanstead
Dear Juan, Show me the code. Best Regards Leigh - Original Message - From: "Juan Manuel Gomez Ramos" [EMAIL PROTECTED] To: "Multiple recipients of list delphi" [EMAIL PROTECTED] Sent: Tuesday, November 14, 2000 1:24 PM Subject: [DUG]: incredible and horrible. Hi there: I'm

Re:[DUG]: incredible and horrible.

2000-11-13 Thread paul . mckenzie
Can you show us the Code ? Regards Paul Reply Separator Subject: [DUG]: incredible and horrible. Author: [EMAIL PROTECTED] Date: 14/11/2000 12:24 Hi there: I'm having a strange situation. I create, in a class method, two

Re: [DUG]: incredible and horrible. (the Code)

2000-11-13 Thread Juan Manuel Gomez Ramos
TSpIterator = class (TObject) private NextIndexes, PrevIndexes: array of Integer; public property Count: Integer read FCount; property Current: Integer read FCurrent; constructor Create(InitCount: Integer); destructor Destroy; override; procedure Next; procedure

Re[2]: [DUG]: incredible and horrible. (the Code)

2000-11-13 Thread paul . mckenzie
The only thing I can see - a quick look only (ie it may have nothing to do with it...) If InitCount = 0 then the Inherited Create will not be called - No Object Creation. If you then try to free it - bang ! HTH - But this is only a quick thought !!! Regards Paul Reply

Re: [DUG]: incredible and horrible. (the Code)

2000-11-13 Thread Neven MacEwan
Juan This should be constructor TSpIterator.Create(InitCount: Integer); begin inherited Create; if ( InitCount 0 ) then try Reset(InitCount); except on E: EOutOfMemory do MessageDlg(E.Message, mtError, [mbOk], 0); end end; (not sure of the effect of

RE: [DUG]: Web Stuff

2000-11-13 Thread Donovan J. Edye
S, Why can't we have a universal language to do everything we like? U. So why do we have Delphi / Pascal, C++, C, C#, SmallTalk, Perl, DOS Batch Files etc. etc. You choose the best tool for the job. Writing a DOS batch file to copy some files seems to be a more feasible solution than