[DUG]: Returning x Rows in Paradox

2003-11-19 Thread James Sugrue
Is there a  way in Paradox that allows you to return x rows from a select query?   I.E SQL Server would allow something like:   Select Top 100 * from aTable   Anything like this in Paradox ?       James Sugrue   Software Developer WA Systems Timaru Phone 03 688-1131  

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: [DUG]: Delphi 8 etc

2003-11-13 Thread James Sugrue
More like I had the Friday morning cbf’s!   From: owner-[EMAIL PROTECTED] [mailto:owner-[EMAIL PROTECTED]] On Behalf Of Tracey Maule Sent: Friday, 14 November 2003 11:46 a.m. To: Multiple recipients of list delphi Subject: Re: [DUG]: Delphi 8 etc     >Bit of a lazy Frid

RE: [DUG]: Delphi 8 etc

2003-11-13 Thread James Sugrue
Delphi 8 for .Net will include D7 in the same box but that’s as far as it goes. D8 is a full .Net product. By all accounts you will be able to convert existing VCL apps to .Net reasonably easily, there’s even a BDE .Net!   >I was under the understanding that Delphi8 will include De

RE: [DUG]: Memory Sleuth 3

2003-11-12 Thread James Sugrue
They no longer exist. Either it is open source or the parent company will be trying to sell it to some other company. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Alistair George Sent: Thursday, 13 November 2003 3:44 p.m. To: Multiple recipients of list

RE: [DUG]: DirectX information

2003-11-12 Thread James Sugrue
www.delphigamer.com http://turbo.gamedev.net/ There are some components that take the hassle out of it. Look on the turbo.gamedev site for details -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Phil Middlemiss Sent: Thursday, 13 November 2003 8:42 a.m. T

RE: [DUG]: Flash Windows

2003-11-11 Thread James Sugrue
To answer my own question FlashWindowEx seems to do it.   From: owner-[EMAIL PROTECTED] [mailto:owner-[EMAIL PROTECTED]] On Behalf Of James Sugrue Sent: Wednesday, 12 November 2003 10:54 a.m. To: Multiple recipients of list delphi Subject: [DUG]: Flash Windows   I would like

[DUG]: Flash Windows

2003-11-11 Thread James Sugrue
I would like to flash an inactive window until it becomes active, ala the MSN chat program.   I thought the FlashWindow api might be the story, but it only flashes once.   So I went down the SetForegroundWindow call, which goes ok but interrupts whatever the user is doing.     James

RE: [DUG]: Close failure

2003-11-10 Thread James Sugrue
LOL >Either way - it's all in the helpfile... you know, the one that came >with Delphi ;-) --- New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED] Website: http://www.delphi.org.nz To UnSub

RE: [DUG]: Close failure

2003-11-10 Thread James Sugrue
I think TcomponentList is inherited from TObjectList so the list members should be freed when the components are? I've never used either but the help file reads that way. So short answer is you probably don't need to clear the list. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAI

RE: [DUG]: Convert Firebird to MSSQL

2003-11-06 Thread James Sugrue
Powers that be aren’t immune to dumb ideas though unfortunately.   From: owner-[EMAIL PROTECTED] [mailto:owner-[EMAIL PROTECTED]] On Behalf Of Richard Vowles Sent: Friday, 7 November 2003 11:21 a.m. To: Multiple recipients of list delphi Subject: RE: [DUG]: Convert Firebird to MSS

RE: [DUG]: Convert Firebird to MSSQL

2003-11-06 Thread James Sugrue
I don’t know of any web docs, but I did such a thing a year ago. It was mostly painless. I think I just did and extract out of IB and import into MSSQL.   As far as the code goes, not a lot would change, depending on how the original app was coded.   From: owner-[EMAIL PROTECTED

RE: [DUG]: Employment

2003-11-06 Thread James Sugrue
It is a friend too not “a friend” ;-)   From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of James Sugrue Sent: Wednesday, 5 November 2003 10:55 a.m. To: Multiple recipients of list delphi Subject: [DUG]: Employment   Does anyone know of any openings in the Auckland

RE: [DUG]: CVS

2003-11-06 Thread James Sugrue
I have been playing with FreeVCS lately. It appears quite nice on the surface. I haven't done much more than play though. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Rohit Gupta Sent: Wednesday, 5 November 2003 11:41 a.m. To: Multiple recipients of lis

[DUG]: Employment

2003-11-04 Thread James Sugrue
Does anyone know of any openings in the Auckland area for a Senior Developer with 10+ years experience? Delphi/C++/Java preferred.   I have a friend who is looking.   Regards       James Sugrue   Software Developer WA Systems Timaru Phone 03 688-1131  

RE: [DUG]: C Conversion

2003-11-04 Thread James Sugrue
aStore xor accum) and $8000) > 0 then accum := (accum shl 1) xor CRCDIV; Lastly, this does not affect your code, but for correctness: for currBit := 0 to 7 do Interesting polynomial: CRCDIV = $8005; - Original Message - From: James Sugrue To: Multiple recipi

RE: [DUG]: C Conversion

2003-11-03 Thread James Sugrue
Yes you’re right. Thanks. (Slap myself about the head)   From: owner-[EMAIL PROTECTED] [mailto:owner-[EMAIL PROTECTED]] On Behalf Of Paul Heinz Sent: Tuesday, 4 November 2003 12:45 p.m. To: Multiple recipients of list delphi Subject: RE: [DUG]: C Conversion   James asked:

RE: [DUG]: C Conversion

2003-11-03 Thread James Sugrue
?   And 0 to 7 ?   From: owner-[EMAIL PROTECTED] [mailto:owner-[EMAIL PROTECTED]] On Behalf Of James Sugrue Sent: Tuesday, 4 November 2003 12:00 p.m. To: postmaster Subject: [DUG]: C Conversion   I have the following code. I have tried to convert into Delphi but it isn’t 100% correct

[DUG]: C Conversion

2003-11-03 Thread James Sugrue
:= dataStore shl 1;     end;   end;     result := accum; end;             James Sugrue   Software Developer WA Systems Timaru Phone 03 688-1131  

RE: [DUG]: [DUG-OFF-TOPIC]: Any Kylix programmer?

2003-11-02 Thread James Sugrue
I do some Kylix programming, mostly for Web Apps. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Leigh Wanstead Sent: Monday, 3 November 2003 9:44 a.m. To: Multiple recipients of list delphi Subject: [DUG]: [DUG-OFF-TOPIC]: Any Kylix programmer? Hello ev

RE: [DUG]: Cannot locate "cvtypes.h"

2003-07-02 Thread James Sugrue
As far as I know Delphi can't read C header files. Also if it is in " Delphi will disregard it anyway. A C header file usually contains function and class prototypes and new type declarations. You will have to convert any header file to a .pas file and include in your uses. try http://www.delphi-

RE: [DUG]: I want to use toolkits written in c so I need some translations from c to delphi

2003-07-01 Thread James Sugrue
The first place to check is the Delphi Jedi site as you have suggested. They have or are converting the major API's to Delphi. Failing that there is a program called HeadConv and can be downloaded from drbob42.com under tools. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTE

RE: [DUG]: positioning Controls at runtime

2003-06-30 Thread James Sugrue
Might be of assistance Question: How can I easily move a Window control at runtime? Answer: The following example shows how to move a window control at runtime by holding down the control key and clicking the left mouse button. This method will not work with non-window controls such as TLabel com

RE: [DUG]: OFFTOPIC: Pocket Studio

2003-06-19 Thread James Sugrue
Steve Peacocke Sent: Friday, 20 June 2003 9:25 am To: Multiple recipients of list delphi Subject: RE: [DUG]: OFFTOPIC: Pocket Studio James Sugrue said: > In the last couple of weeks I have been playing with the new Palm > Tungsten range and think the hardware is now at a comparable level, if &

RE: [DUG]: OFFTOPIC: Pocket Studio

2003-06-19 Thread James Sugrue
:[EMAIL PROTECTED] - Winsoft, LTD Email Support. Again, We thank you and wish you and Winsoft, LTD all the best! Sincerely, The Pocket Technologies, Inc. Team! - Original Message - From: James Sugrue To: Multiple recipients of list delphi Sent: Thursday, June 19

RE: [DUG]: OFFTOPIC: Pocket Studio

2003-06-19 Thread James Sugrue
]: OFFTOPIC: Pocket Studio REALLY ? Out of business??? MATE that SUCKS. Its a damn good product from what I usedI sold my palm and got an IPaq not long after, but it was great. Jeremy -Original Message- From: "James Sugrue" <[EMAIL PROTECTED]> To: Multiple recipient

[DUG]: OFFTOPIC: Pocket Studio

2003-06-18 Thread James Sugrue
I bought this about 6months ago. I notice that the company has gone out of business. Anyone know if anyone has taken up the development of Pocket Studio? --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.488 / Virus Da

RE: [DUG]: QuickReports code needed

2003-06-18 Thread James Sugrue
Does the printer setup dialog not work? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mark Howard Sent: Thursday, 19 June 2003 10:41 am To: Multiple recipients of list delphi Subject: [DUG]: QuickReports code needed Hi all Following on from my problem l

RE: [DUG]: Quick Reports Preview

2003-06-09 Thread James Sugrue
No, just have the QReport(or whatever it is) unit in your uses clause. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mark Howard Sent: Tuesday, 10 June 2003 3:51 pm To: Multiple recipients of list delphi Subject: RE: [DUG]: Quick Reports Preview On 10 J

RE: [DUG]: Quick Reports Preview

2003-06-09 Thread James Sugrue
uesday, 10 June 2003 2:35 pm To: Multiple recipients of list delphi Subject: RE: [DUG]: Quick Reports Preview Hi James Same result - AV Mark On 10 Jun 2003 at 14:25, James Sugrue wrote: > What happens if you take the close out of the after preview event ? > > -Original Message-

RE: [DUG]: Quick Reports Preview

2003-06-09 Thread James Sugrue
What happens if you take the close out of the after preview event ? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mark Howard Sent: Tuesday, 10 June 2003 2:04 pm To: Multiple recipients of list delphi Subject: RE: [DUG]: Quick Reports Preview Hi Steve

RE: [DUG]: creating a treenodes during run-time

2003-06-09 Thread James Sugrue
Look in the help under TTreeNode Add. There is an example. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Ben none Sent: Tuesday, 10 June 2003 10:42 am To: Multiple recipients of list delphi Subject: [DUG]: creating a treenodes during run-time hi, how do

RE: [DUG]: Who was looking for Visual C/C++ 1.5?

2003-06-09 Thread James Sugrue
That was me. Mark Howard generously donated a copy. But thanks anyway. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Myles Penlington Sent: Tuesday, 10 June 2003 9:29 am To: Multiple recipients of list delphi Subject: [DUG]: Who was looking for Visual C

RE: [DUG]: Delphi 6 on Windows XP

2003-06-06 Thread James Sugrue
Todd, I have 5, 6 and 7 on an XP box. It runs fine. I have installed heaps of components and recompiled the vcl packages. Maybe a rouge component is causing trouble. Try removing ones the ones you think might be causing the trouble. If that doesn't work. It might need a reinstall ? -Origina

RE: [DUG]: Offtopic: Visual C++ 1.5

2003-06-06 Thread James Sugrue
2.0 is no use? Mark PS Free to a good home. On 6 Jun 2003 at 9:45, James Sugrue wrote: > > Bit out of left field… > Does anyone have a copy of this? We want to do some programming for > the Symbol PDT units and the SDK is compiled for Visual C++ 1.5. We > have been unable to tr

[DUG]: Offtopic: Visual C++ 1.5

2003-06-06 Thread James Sugrue
Bit out of left field… Does anyone have a copy of this? We want to do some programming for the Symbol PDT units and the SDK is compiled for Visual C++ 1.5. We have been unable to track down a copy anywhere.   Microsoft NZ have given us permission to copy the CD if anyone has got it.  

[DUG]: Path to Web Server

2003-06-05 Thread James Sugrue
Does anyone know if there is an API call or similar to get the path (Win32) of the webserver installed on a machine?   --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.483 / Virus Database: 279 - Release Date: 19/05

RE: [DUG]: hiding a file

2003-06-04 Thread James Sugrue
Oh right. I usually store these in encrypted strings in an ini file in system32 dir. Give it a official sounding name like MSx32.DAT and most people wont touch it. If they do tamper with it they won't be able to change the values because they are encrypted. If the file is missing or data is ta

RE: [DUG]: hiding a file

2003-06-04 Thread James Sugrue
I haven't really been following this thread but, if you want to make a trial app, have you looked at OnGuard by TurboPower (Free)? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Paul Lowman Sent: Wednesday, 4 June 2003 9:26 am To: Multiple recipients of

RE: [DUG]: Onidle

2003-04-02 Thread James Sugrue
Haven't been following this thread, so if this is wrong I apologise but I think Jeremy suggested: Application.OnIdle := lIdleHandler.IdleHandler instead of Application.OnIdle := lIdleHandler Just as an aside, the other day someone had a query and you suggested that they look at the help. Might

RE: [DUG]: Problem with D7

2003-03-31 Thread James Sugrue
might help : http://community.borland.com/article/0,1410,27717,00.html -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of David O'Brien Sent: Tuesday, 1 April 2003 12:32 pm To: Multiple recipients of list delphi Subject: [DUG]: Problem with D7 I have a compon

RE: [DUG]: Windows quirks and inexperienced users

2003-03-31 Thread James Sugrue
Instead of using MessageDlg, make a form off your own to display the message. Instead of Form.ShowModal, go Form.Show. This will allow control back to your mainform. In the mainform you will be able to trap all the events, and send focus back to the message form etc. There is an api call (Fl

[DUG]: Test

2003-03-26 Thread James Sugrue
Test --- New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED] Website: http://www.delphi.org.nz To UnSub, send email to: [EMAIL PROTECTED] with body of "unsubscribe delphi" Web Archive at: htt

RE: [DUG]: Getting the FullPath of running application

2003-03-20 Thread James Sugrue
It would be the current executable. User clicks on a desktop shortcut to run the app, and the local path could be different, depending on the who was using. I.E could be e:\blah or f:\blah or //someserver/blah This is not a Delphi App. COBOL has no paramstr(0) equivalent under Windows. I thought I

[DUG]: Getting the FullPath of running application

2003-03-20 Thread James Sugrue
Does anyone know of an API call to get the Full Path Name of an executable. It needs to be a WinApi call, because I want to export it in a .dll to a COBOL program.   I am pretty sure GetFullPathName only returns the current directory.

[DUG]: GUI Standards

2003-03-16 Thread James Sugrue
Does anyone know of a document that outlines a rough guideline for GUI applications under Windows ? I.E standard font to use, height of edit/combo boxes, standard button sizes -- that sort of thing Having a bit of a disagreement with a colleague. -

Re: [DUG]: Tip for sore eyes

2003-03-12 Thread James Sugrue
Also, Acer have cheap 17's for around $780 and 15's for under $500. This is buy price and add GST. Retail for a 17 would be above 1000 still I would think. - Original Message - From: Chris Veale To: Multiple recipients of list delphi Sent: Thursday, March 13, 2003 12:

Re: [DUG]: Tip for sore eyes

2003-03-12 Thread James Sugrue
cant be f*cked's - Original Message - From: Willie To: Multiple recipients of list delphi Sent: Thursday, March 13, 2003 11:16 AM Subject: RE: [DUG]: Tip for sore eyes mid afternoon cbf's   maybe I need to start having these, what are they?

Re: [DUG]: Tip for sore eyes

2003-03-12 Thread James Sugrue
I agree. I don't have a 17 though (luck buggar), but my 15 inch TFT is great. I found since I have had it, headaches and mid afternoon cbf's have reduced also. Might be a coincidence with the last one though. - Original Message - From: Leigh Wanstead To: Multiple recipi

Re: [DUG]: My gripe for the week - 3rd party components

2003-03-10 Thread James Sugrue
here, and could not even count on one > hand when I have had a problem that I have never had a response from the > author in some form or another. > Admitidly, I only EVER get comps. with full source. > > Jeremy > > -Original Message- > From: "James Sugrue&q

Re: [DUG]: Hello all!

2003-03-10 Thread James Sugrue
There are a few Delphi jobs around, I don't know about Dunedin, but there a several Delphi shops that I know of in ChCh, including both of the major Supermarket chains. - Original Message - From: Nicholas Sherlock To: Multiple recipients of list delphi Sent: Tuesda

Re: [DUG]: My gripe for the week - 3rd party components

2003-03-10 Thread James Sugrue
ne > hand when I have had a problem that I have never had a response from the > author in some form or another. > Admitidly, I only EVER get comps. with full source. > > Jeremy > > -Original Message- > From: "James Sugrue" <[EMAIL PROTECTED]> > To: Mu

Re: [DUG]: My gripe for the week - 3rd party components

2003-03-10 Thread James Sugrue
This is the reason I only use 3rd party comps from reputable places like Woll2Woll and (sic) Turbopower. You generally get what you pay for, there are exceptions of course, but I would never use anything from Torrys for example.   - Original Message - From: [EMAIL PROTECTED]

Re: [DUG]: OpenSource TurboPower

2003-03-10 Thread James Sugrue
Title: Message Yip. Have downloaded and tried pretty much everything. Like the look of FlashFiler and have used the Orpheus stuff before.   - Original Message - From: Jeremy Coulter To: Multiple recipients of list delphi Sent: Tuesday, March 11, 2003 8:43 AM Subj

Re: Re: [DUG]: coding

2003-03-09 Thread James Sugrue
I would expect if true and not then to come up with an error, it is analogous to if a = then - Original Message - From: "Allan, Samuel" <[EMAIL PROTECTED]> To: "Multiple recipients of list delphi" <[EMAIL PROTECTED]> Sent: Monday, March 10, 2003 1:51 PM Subject: RE: Re: [DUG]:

Re: [DUG]: coding

2003-03-09 Thread James Sugrue
I tried your code below and it worked both ways for me. The only way CheckFileFirst would be called, would be if DateSwitch was True and rxCheckListBox6.Checked was False I notice they are check-listboxes, are you sure you have the syntax correct Shouldn't it be RxCheckListBox6[2].Checked ? ---

Re: [DUG]: coding

2003-03-09 Thread James Sugrue
It is parsed correctly. It is to do with truth tables and logical operators. I never paid too much attention in MATH115 cos the lecturer was a tool, so hopefully someone who had a better lecturer can explain this ;-) - Original Message - From: "Alistair George" <[EMAIL PROTECTED]> To: "Mu

Re: [DUG]: query.next only once?

2003-03-05 Thread James Sugrue
I should have added look down below for explanation. - Original Message - From: James Sugrue To: Multiple recipients of list delphi Sent: Thursday, March 06, 2003 2:49 PM Subject: Re: [DUG]: query.next only once?   I think i finally have

Re: [DUG]: query.next only once?

2003-03-05 Thread James Sugrue
  I think i finally have that query sussed.   My new problem is this: In the following code, query1 returns 7 records   SkillID                     Name -- 7                        Class A License

Re: [DUG]: AN old question, but a goodie

2003-03-04 Thread James Sugrue
try under BDE admin, net dir under configuration | native | paradox Something like that, am going off memory too. - Original Message - From: "vss" <[EMAIL PROTECTED]> To: "Multiple recipients of list delphi" <[EMAIL PROTECTED]> Sent: Wednesday, March 05, 2003 4:38 PM Subject: [DUG]: AN o

Re: [DUG]: Showmodal problems

2003-02-24 Thread James Sugrue
Sorry, should have stated (as someone else has) that it has to be the mainform to work. Is the trayicon form part of the same project or a different exe ? I'm not sure what you are trying to do. - Original Message - From: Alistair George <[EMAIL PROTECTED]> To: Multiple recipients of list

Re: [DUG]: Showmodal problems

2003-02-24 Thread James Sugrue
The reason you are getting the AV is that Form1 doesn't exist. You are creating an instance of TForm1 not the variable form1. Two different things. Anyway, in the project source try Application.ShowMainForm := False; - Original Message - From: Alistair George <[EMAIL PROTECTED]> To: Mult

Re: [DUG]: (Fwd) Borland and David I need your help

2003-02-16 Thread James Sugrue
I have been a member for a few years, don't get anything from it really. Except is says your name at the top of the screen when you logon onto the community site. I think people are confusing BDN with the Borland Solutions Partner (BSP) program. BDN is the new name for the community site http://c

Re: [DUG]: F.Y.I

2003-02-16 Thread James Sugrue
Nah, their parent company makes gaming machines (pokies etc) and want to simplify their business, so TurboPower was culled. - Original Message - From: vss <[EMAIL PROTECTED]> To: Multiple recipients of list delphi <[EMAIL PROTECTED]> Sent: Monday, February 17, 2003 11:12 AM Subject: [DUG]:

Re: [DUG]: Delphi7

2003-02-13 Thread James Sugrue
RxLib is available from Sourceforge and if you look in the help, it shows how to install for D7 - Original Message - From: Alistair George <[EMAIL PROTECTED]> To: Multiple recipients of list delphi <[EMAIL PROTECTED]> Sent: Friday, February 14, 2003 10:59 AM Subject: [DUG]: Delphi7 > Hi.

Re: [DUG]: uses

2003-02-12 Thread James Sugrue
I suspect that you cant have 'in' in a units uses clause only a programs ? Also shouldn't that be '..\back4winxp\mb.pas'; ? - Original Message - From: Alistair George <[EMAIL PROTECTED]> To: Multiple recipients of list delphi <[EMAIL PROTECTED]> Sent: Thursday, February 13, 2003 4:06 PM S

Re: [DUG]: Printing Barcodes

2003-02-12 Thread James Sugrue
. - Original Message - From: Max Nilson <[EMAIL PROTECTED]> To: Multiple recipients of list delphi <[EMAIL PROTECTED]> Sent: Thursday, February 13, 2003 4:03 PM Subject: RE: [DUG]: Printing Barcodes > James Sugrue said: > > > Rave Reports in D7 has barcode support built in. &

Re: [DUG]: Printing Barcodes

2003-02-12 Thread James Sugrue
Rave Reports in D7 has barcode support built in. - Original Message - From: Stephen Bertram <[EMAIL PROTECTED]> To: Multiple recipients of list delphi <[EMAIL PROTECTED]> Sent: Thursday, February 13, 2003 3:21 PM Subject: [DUG]: Printing Barcodes Hi All What is the easiest method to cr

Re: [DUG]: Soap Server

2003-02-11 Thread James Sugrue
x27;t work ! > > Rob > > Software engineer > Wild Software Ltd > Ph 03 377-0495 > ----- Original Message - > From: "James Sugrue" <[EMAIL PROTECTED]> > To: "Multiple recipients of list delphi" <[EMAIL PROTECTED]> > Sent:

Re: [DUG]: Soap Server

2003-02-11 Thread James Sugrue
try www.palmolivegold.co.nz - Original Message - From: David O'Brien <[EMAIL PROTECTED]> To: Multiple recipients of list delphi <[EMAIL PROTECTED]> Sent: Wednesday, February 12, 2003 2:47 PM Subject: [DUG]: Soap Server Hi all, Using D7 I have created a default Soap server application us

Re: [DUG]: XP versus NT

2003-02-04 Thread James Sugrue
I wrote a big explanation on caveats when programming for XP and then re read your post to find that all your users are NT. In my experience (I use XP) there are no problems (to date) when programming on XP for NT platforms using D6. - Original Message - From: <[EMAIL PROTECTED]> To: Mult

Re: [DUG]: SQL Access

2003-02-02 Thread James Sugrue
, 2003 12:44 PM Subject: RE: [DUG]: SQL Access > My PC as 2.52 and both servers have 2.61 > > > -Original Message- > > From: James Sugrue [SMTP:[EMAIL PROTECTED]] > > Sent: Monday, 3 February 2003 12:42 p.m. > > To: Multiple recipients of list delphi > >

Re: [DUG]: SQL Access

2003-02-02 Thread James Sugrue
Might be a better way, but if you do a search for Mdac in the registry it comes to version. - Original Message - From: Eion McIntosh (Christchurch) <[EMAIL PROTECTED]> To: Multiple recipients of list delphi <[EMAIL PROTECTED]> Sent: Monday, February 03, 2003 12:29 PM Subject: RE: [DUG]: S

Re: [DUG]: SQL Access

2003-02-02 Thread James Sugrue
I would concur with using ADO over BDE.. - Original Message - From: Peter Speden <[EMAIL PROTECTED]> To: Multiple recipients of list delphi <[EMAIL PROTECTED]> Sent: Monday, February 03, 2003 12:21 PM Subject: RE: [DUG]: SQL Access Which version of SQL are you using? The BDE SQL Links a

Re: [DUG]: External Exceptions

2003-01-28 Thread James Sugrue
ame article off > Experts Exchange :-) > > Jeremy > > -Original Message- > From: "James Sugrue" <[EMAIL PROTECTED]> > To: Multiple recipients of list delphi <[EMAIL PROTECTED]> > Date: Wed, 29 Jan 2003 14:54:58 +1300 > Subject: Re: [DUG]: Extern

Re: [DUG]: Dr. Watson

2003-01-28 Thread James Sugrue
http://www.delphifaq.com/fq/q1061.shtml - Original Message - From: Cheng Wei (ASL) <[EMAIL PROTECTED]> To: Multiple recipients of list delphi <[EMAIL PROTECTED]> Sent: Wednesday, January 29, 2003 2:59 PM Subject: RE: [DUG]: Dr. Watson Thanks, but actually my question meant to be "does any

Re: [DUG]: External Exceptions

2003-01-28 Thread James Sugrue
STATUS_IN_PAGE_ERROR Answer from unknown source : "Windows doesn't write code-pages to the swap file, because it can just read them again from the exe file. If you have network problems when it needs to do this, you will get the STATUS_IN_PAGE_ERROR excption. You can move the exe to the client dis

Re: [DUG]: PC World Jan 2003 Delphi 7 Personal Free

2003-01-28 Thread James Sugrue
January NZPCWorld, but Feb is out now. - Original Message - From: <[EMAIL PROTECTED]> To: Multiple recipients of list delphi <[EMAIL PROTECTED]> Sent: Wednesday, January 29, 2003 1:15 PM Subject: RE: [DUG]: PC World Jan 2003 Delphi 7 Personal Free > Hi Alistair > > Just phoned a bookshop

Re: [DUG]: PC World Jan 2003 Delphi 7 Personal Free

2003-01-27 Thread James Sugrue
I seem to remember that the hook is personal edition applications can't be used to create commercial applications. - Original Message - From: Alistair George <[EMAIL PROTECTED]> To: Multiple recipients of list delphi <[EMAIL PROTECTED]> Sent: Tuesday, January 28, 2003 3:30 PM Subject: [DUG

Re: [DUG]: Win 98 SE

2003-01-22 Thread James Sugrue
iple recipients of list delphi <[EMAIL PROTECTED]> > > Sent: Thursday, January 23, 2003 3:37 PM > > Subject: Re: [DUG]: Win 98 SE > > > > > > > James > > > > > > If performance was the only issue you'd be using PostgreSQL > > >

Re: [DUG]: Win 98 SE

2003-01-22 Thread James Sugrue
CB30075FA0 > 1!OpenDocument > > Neven > > > - Original Message - > From: "James Sugrue" <[EMAIL PROTECTED]> > To: "Multiple recipients of list delphi" <[EMAIL PROTECTED]> > Sent: Thursday, January 23, 2003 2:37 PM > Subject: Re: [DU

Re: [DUG]: Win 98 SE

2003-01-22 Thread James Sugrue
Never used the others but I had to port an app from Interbase to SQL Server (for reason already stated). SQL Server is a dog in my books. Things were noticably slower under SQL Server. I agree with your other comments re cop out etc. - Original Message - From: Jeremy North <[EMAIL PROTECT

Re: [DUG]: Win 98 SE

2003-01-22 Thread James Sugrue
Not in the least. I was just trying to make the point that Borland must have foreseen this when they opensourced IB6.0 I think Firebird is a great initiative. IBPhoenix too. Borland would be better off worring about competing with SQL Server than Firebird. I have heard of several projects switch

Re: [DUG]: Win 98 SE

2003-01-22 Thread James Sugrue
> Currently, it doesn't (I think) but eventually, yes - I think Firebird will > need it's own set of IBX-style components (assuming that's what you mean). Yeah thats what I meant. At the moment you can definitely hook up a Firebird DB to the IBX Components. I guess if that day arrives I would just

Re: [DUG]: Client Data Set error

2003-01-22 Thread James Sugrue
Have you tried deleting all the dcu's and then doing a Build All. Sometimes fixes vague problems. Also have you tried .Value instead of .AsString ? - Original Message - From: Allan, Samuel <[EMAIL PROTECTED]> To: Multiple recipients of list delphi <[EMAIL PROTECTED]> Sent: Thursday, Janua

Re: [DUG]: Win 98 SE

2003-01-22 Thread James Sugrue
With all the work done to Firebird, will it maintain Interbase compatibility or will we have to use a "Firebird" set of data components eventually ? - Original Message - From: Paul Heinz <[EMAIL PROTECTED]> To: Multiple recipients of list delphi <[EMAIL PROTECTED]> Sent: Thursday, January

Re: [DUG]: Client Data Set error

2003-01-22 Thread James Sugrue
I would say the dataset thinks that reg_group is a DateTime then for some reason. - Original Message - From: Allan, Samuel <[EMAIL PROTECTED]> To: Multiple recipients of list delphi <[EMAIL PROTECTED]> Sent: Thursday, January 23, 2003 11:02 AM Subject: RE: [DUG]: Client Data Set error > I

Re: [DUG]: Client Data Set error

2003-01-22 Thread James Sugrue
is firstPeriodDate as TDateTime or String ? - Original Message - From: Allan, Samuel <[EMAIL PROTECTED]> To: Multiple recipients of list delphi <[EMAIL PROTECTED]> Sent: Thursday, January 23, 2003 10:32 AM Subject: [DUG]: Client Data Set error > I am confused. I have some code to insert

Re: [DUG]: showmessage - weird behaviour

2003-01-22 Thread James Sugrue
Scrap that thought. The ShowMessage calls the same routine as MessageDlg with dialog type Custom. There is a winApi call to get a window to display on top of others. BringWindowToTop or try FlashWindowEx. - Original Message - From: James Sugrue <[EMAIL PROTECTED]> To: Multiple reci

Re: [DUG]: showmessage - weird behaviour

2003-01-22 Thread James Sugrue
Not basing this on fact just theory, but maybe MessageDlg is a Modal form whereas ShowMessage isn't ? - Original Message - From: Alistair George <[EMAIL PROTECTED]> To: Multiple recipients of list delphi <[EMAIL PROTECTED]> Sent: Thursday, January 23, 2003 8:11 AM Subject: [DUG]: showmessa

Re: RE: [DUG]: SHGetFileInfo and File Type

2003-01-16 Thread James Sugrue
but you tended to get bogged down with > other ideas, and you stay on the same track...agh > > Jeremy > > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On > Behalf Of James Sugrue > Sent: Friday, 17 January 2003 09:37 > To: Multiple r

Re: RE: [DUG]: SHGetFileInfo and File Type

2003-01-16 Thread James Sugrue
Paul beat me to it. Just had a look at the (now Open source) Orpheus code for getting the Registered file types and it does what Paul suggests. 1/ Get list of .xxx from HKEY_CLASSES_ROOT 2/ From List created in 1) Search HKEY_CLASSES_ROOT for names in Root and Get Default and associated Icon

Re: [DUG]: Weird form behaviour

2003-01-15 Thread James Sugrue
Funny how different people read things differently, I read that as a bit of a joke on his behalf. - Original Message - From: Neven MacEwan <[EMAIL PROTECTED]> To: Multiple recipients of list delphi <[EMAIL PROTECTED]> Sent: Thursday, January 16, 2003 9:49 AM Subject: Re: [DUG]: Weird form

Re: [DUG]: Adding Icons to the Menu bar....

2003-01-09 Thread James Sugrue
Does it have to be the menu bar. It is easy enough to get a bmp on the Title Bar - Original Message - From: Paul Mckenzie To: Multiple recipients of list delphi Sent: Friday, January 10, 2003 2:29 PM Subject: [DUG]: Adding Icons to the Menu bar G'da

Re: [DUG]: Porting to Delphi 6

2003-01-09 Thread James Sugrue
Maybe it has something to do with the way it was calculating "Field[Ord(bkBankNo) + 1]" What happens if you try : Field[(Ord(bkBankNo) + 1)] Otherwise, I got nuttin - Original Message - From: Matt Dee <[EMAIL PROTECTED]> To: Multiple recipients of list delphi <[EMAIL PROTECTED]> S

Re: [DUG]: TurboPower announces withdrawal from retail business-Open Source Initiative

2003-01-07 Thread James Sugrue
Whats the name of the parent company ? - Original Message - From: Steve Peacocke <[EMAIL PROTECTED]> To: Multiple recipients of list delphi <[EMAIL PROTECTED]> Sent: Wednesday, January 08, 2003 4:19 PM Subject: Re: [DUG]: TurboPower announces withdrawal from retail business-Open Source Init

Re: [DUG]: TurboPower announces withdrawal from retail business-Open Source Initiative

2003-01-07 Thread James Sugrue
ative > Or not much money in Delphi tools these days... > > --On Wednesday, January 08, 2003 14:18:57 +1300 James Sugrue > <[EMAIL PROTECTED]> wrote: > > > I was wondering the same. Maybe not much money in tools these days ??? > > > >

Re: [DUG]: TurboPower announces withdrawal from retail business- Open Source Initiative

2003-01-07 Thread James Sugrue
I was wondering the same. Maybe not much money in tools these days ??? I have used TurboPower products since the early Delphi editions. Must say most are pretty good. Glad to see the open the source up. - Original Message - From: Alister Christie <[EMAIL PROTECTED]> To: Multiple recipient

Re: [DUG]: Shock! Horror!

2002-12-17 Thread James Sugrue
Friday, and no-one seemed interested. Have we become > > apathetic, or is it just Xmas ? > > Tracey pipes up (belatedly after a xmas admin day) > I read it!! didnt say anything about M$ being after Borland now tho! > > - Original Message - > From: "James Sugrue&quo

Re: [DUG]: Shock! Horror!

2002-12-16 Thread James Sugrue
oft to throw their weight around. > Still didn't I read in that Friday post Dave Fuller was prepared to sell > Borland. All very weird. > > > > -Original Message- > From: James Sugrue [SMTP:[EMAIL PROTECTED]] > Sent: Tuesday, 17 December 2002 10:53 > To: Multip

  1   2   3   4   >