[DUG]: How do you spell Delphi?

2003-11-16 Thread gajo
I'm living in Yugoslavia and here we spell Delphi as "Delfee", as it should be in Greek. However, now I looked at a presentation (http://www.borland.com/delphi/demo/octane_sneakpeek.html) of Delphi and there the commentator spelled Delphi as "Delfay". Is that how you say it in English? :) Gajo

[DUG]: Compatibility error

2003-11-16 Thread gajo
The following code returns an error saying how kom[i] is not compatible with lin. Why? type line = record ... end; kom = array of line; // line of commands // I have SetLength(kom,10); procedure FindAndDeleteLine(var komd: kom; lin: line; var found: Boolean); var i: L

Re: [DUG]: Another custom component question

2003-11-16 Thread Dennis Chuah
Another custom component question Why don't you simply create two components? - Original Message - From: [EMAIL PROTECTED] To: Multiple recipients of list delphi Sent: Friday, November 14, 2003 9:14 AM Subject: [DUG]: Another custom component question Hi all I drop my custom TTable compo

Re: [DUG]: Packages problem

2003-11-16 Thread Dennis Chuah
Hmmm... strange problem. The Clipbrd unit is quite small and simple, but then again, you are dealing with a M$ product, so anything can happen. As a hack, why don't you simply copy the unit and put that into your package. You will need to give it a new unit name as the unit name space is global

[DUG]: Documentation on untraceable APPLICATION EXCEPTION

2003-11-16 Thread Alistair George
Hi All. It might be useful for me to post my experiences with debugging a particularly difficult software problem. Many or most of you will be aware of this procedure I have done, but for those in the future who like me, are struggling with an issue I hope it helps: Scenario: When closing an

[DUG]: Freeing exceptions?

2003-11-16 Thread Allan, Samuel
Title: Message Exception decends from TObject. Correct me if I am wrong, but if I create an exception and do not raise it, I then have to free it? But if I create an exception, muck about with it, and then raise it I do not have to free it?       Is the below code a memory leak?   procedure

RE: [DUG]: application shutdown

2003-11-16 Thread Jeremy Coulter
Hi again all. Well this problem is starting to anoy me ! I am doing the following :- procedure TfrmMain.WMQueryEndSession(var Msg: TWMQUERYENDSESSION); const ABORT_WINDOWS_SHUTDOWN = 0 ; CONTINUE_WINDOWS_SHUTDOWN = 1 ; begin inherited; Msg.Result:=CONTINUE_WINDOWS_SHUTDOWN; end; Which fro

RE: [DUG]: How do you spell Delphi?

2003-11-16 Thread Jeremy Coulter
No, that's how you say it in American ;-) Jeremy -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of gajo Sent: Saturday, 15 November 2003 11:00 To: Multiple recipients of list delphi Subject: [DUG]: How do you spell Delphi? I'm living in Yugoslavia and her

Re: [DUG]: How do you spell Delphi?

2003-11-16 Thread Paul Mckenzie
Definitely Delphi People do seem to pronounce it two different ways though ... Accenting on the e or accenting on the i Del - fe Del - fi Personally I pronounce it accenting the e and hate people accenting the i That's me :-) Regards Paul McKenzie Analyst Programmer SMSS Ltd. - Original Mess

[DUG]: The List

2003-11-16 Thread Gary T. Benner
Title: myOffice Email Message [Reply] HI all, I mentioned last week that the new list server would be commissioned over the weekend. Unfortunately due to personal committments, that did not happen. It will happen tonight. What you

RE: [DUG]: Freeing exceptions?

2003-11-16 Thread Myles Penlington
Title: Message Basically correct. An  exception is/can be any old object. The only difference is that if an object is used in a raise statement, then that object is then lifetime managed by the exception handlers.    The only issue with this, is that if a another exception is raised in an e

RE: [DUG]: Compatibility error

2003-11-16 Thread David O'Brien
You cannot directly compare two records, you must compare each element individually. Dave. -Original Message- From: gajo [mailto:[EMAIL PROTECTED] Sent: Sunday, 16 November 2003 3:17 a.m. To: Multiple recipients of list delphi Subject: [DUG]: Compatibility error The following code retur

RE: [DUG]: Freeing exceptions?

2003-11-16 Thread Conor.Boyd
Title: Message You are correct.   Can you tell us why you would want to create an exception object without raising it though?   Cheers,   C. -Original Message-From: Allan, Samuel [mailto:[EMAIL PROTECTED]  Exception decends from TObject. Correct me if I am wrong, but if I c

Re: [DUG]: How do you spell Delphi?

2003-11-16 Thread Robert martin
Agreed The i version seems to be the American pronunciation. Although since Borland is an American company perhaps their pronunciation should be the one that's used. Although Oamaru and Timaru seem tio have that problem with TV presenters 'Maori izing' there names. How Oamaru becomes O-Oamaru o

RE: [DUG]: Freeing exceptions?

2003-11-16 Thread Ben Taylor
hi, > The only issue with this, is that if a another exception is raised in an > except block while handling the first exception, then the first exception is > lost and never destroyed - this was the case last time I looked into this > particular issue/leak. just did a quick test, in d6 everythi

RE: [DUG]: How do you spell Delphi?

2003-11-16 Thread James Sugrue
Coming from that region they should be pronounced ohm-aru, and Tim-aru, might not be the PC way to say it, but surely the correct pronunciation is the way the locals say it. As for Delphi, I seem to remember that the correct pronunciation - according to key people at Borland is del-fee. It is a US

RE: Re: [DUG]: How do you spell Delphi?

2003-11-16 Thread Witherden, Stephen
Definitely spelt Delphi & pronounced Del-fee Delphi is named after one of the centers of the world in Greek mythology. I don't think either Maori or American pronounciation existed when it was named :p Stephen > -Original Message- > From: Robert martin [mailto:[EMAIL PROTECTED] > Sent: M

Re: [DUG]: How do you spell Delphi?

2003-11-16 Thread Robert martin
> Coming from that region they should be pronounced ohm-aru, and Tim-aru, > might not be the PC way to say it, but surely the correct pronunciation is > the way the locals say it. > Agreed, I think it is pronounced wront on TV. > As for Delphi, I seem to remember that the correct pronunciation -

Re: [DUG]: How do you spell Delphi?

2003-11-16 Thread vss
since its Latin, and you prononce Pi "Pie" the logic would follow, it would be Delph- eye dont Delph-ee but screw it I call it Delph-ee :-) Jeremy -Original Message- From: "Robert martin" <[EMAIL PROTECTED]> To: Multiple recipients of list delphi <[EMAIL PROTECTED]> Date: Mon, 17 Nov 200

RE: RE: [DUG]: Freeing exceptions?

2003-11-16 Thread Allan, Samuel
Title: Message Yes. Long story short, our three tier software reports exceptions on the server as strings which only contain the error message. On the client these are all raised as EDatabaseError. I want to send exception types from the server to the client. So we planned to change the serv

RE: [DUG]: How do you spell Delphi?

2003-11-16 Thread David Brennan
Mmmm. Ignoring the fact that Pi and Delphi are both Greek and not Latin, let's take this logic a little further. It would appear that we are all pronouncing a number of word incorrectly. For example Philosophy should more correctly be pronounced as Pielosophy. Perhaps Photography should be Piotog

Re: [DUG]: How do you spell Delphi?

2003-11-16 Thread Kurt at DBC
Witherden, Stephen wrote: >> Definitely spelt Delphi & pronounced Del-fee >> >> Delphi is named after one of the centers of the world in Greek >> mythology. Yeah, though ISTR people who talk about the Oracle at the Delphi as saying 'Delf - eye'. But then they're prolly Merkin's too. Delph-ee sou

RE: [DUG]: How do you spell Delphi?

2003-11-16 Thread John
The English language is stupid! Consider the following: There is no egg in the eggplant No ham in hamburger and neither pine nor apple in the pineapple. English muffins were not invented in England. We sometimes take English for granted, but if we examine its paradoxes we find that: Quicksand

Re: [DUG]: Freeing exceptions?

2003-11-16 Thread Dennis Chuah
Message> Is the below code a memory leak? > procedure TSam.Samuel; > var > e: Exception; > begin > e := Exception.Create('Foobar'); > end; Yes, every time the method is called. > Is the below code okay? > procedure TSam.TrySamuel; > var > e: Exception; > begin > e := Exception.Create('F

Re: [DUG]: Compatibility error

2003-11-16 Thread gajo
> You cannot directly compare two records, you must compare each element individually. Is there no procedure that does that? --- New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED] Website:

RE: [DUG]: How do you spell Delphi?

2003-11-16 Thread Moises Lopez
hehe, funny according to the encyclopedia, the correct pronunciation for Delphi is DEL-f-eye, although i dont particularly remember anyone saying it that way, at least in Spanish everyone says DEL-fee, which is far better, imho. At 01:00 PM 11/17/2003 +1300, you wrote: The English language is

[DUG]: Site Blocking

2003-11-16 Thread vss
Hi all Sorry this is WAY off topic, but I want to block a specific website from being access on a machine at home. My ADSL modem wont let me do this, and I really dont want to install a firewall unless I can help it considering its only on one machine. Anyone know of any tricks I can do to do thi

[DUG]: blocking sites - sorted

2003-11-16 Thread vss
DUH ! all I needed to do was put an entrie in the HOSTS file, and now its sorted...sweet Jeremy --- New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED] Website: http://www.delphi.org.nz To

[DUG]: Delphi Developer Required

2003-11-16 Thread Gary T. Benner
Title: myOffice Email Message HI all, Since there's so much discussion on pronounciation etc, there must be heaps of you with not enough work . I've been approached by a contact who is looking for a couple of experienced Delphi developers, with good User Interface and genera