Re: [DUG]: FW: Paradox problem

2003-06-26 Thread Bevan Edwards
Title: Message Hi Jeremy,   Is this the only installation or has it been installed on other machines as well? Where are the datafiles kept? You can use the Control Panel BDE Administrator tool (if installed) to tell the BDE where the PDOXUSRS.NET file is to be stored (Configuration, Drivers,

[DUG]: FW: Paradox problem

2003-06-26 Thread Jeremy Coulter
Title: Message Sending this again as it did not seem to get received by the list :-   Hi all. I had to install some software ona  PC for someone the other day that uses the BDE and paradox. Now, not using either of them in a number of years, I am not entirly sure what this error means, or h

RE: [DUG]: Need component to imitate Windows Explorer

2003-06-26 Thread Dave . Jollie
Thanks Dennis. :-) Dave Jollie Developer, TOWER NZ IT * *: 09 368 4259 *: 09 306 6801 *: [EMAIL PROTECTED] *: 46 Parnell Rd, Parnell, Auckland -Original Message- From: Dennis Chuah [mailto:[EMAIL PROTECTED]

[DUG]: I want to be subscriber of delphi.org.nz but without the messages flooding email

2003-06-26 Thread Ben none
Hi I want to be able to post messages to [EMAIL PROTECTED] and still read the message archive http://www.mail-archive.com/delphi%40delphi.org.nz/ but I don't want to receive the messages through my email cos there is just to much to read or delete. Is there anyway I can still be apart of the gr

Re: [DUG]: Need component to imitate Windows Explorer

2003-06-26 Thread Laurie Bisman
Would be pretty straight forward to cobble one together with standard components. Take a look at Win3.1 Tab in VCL and look at Drive/Directory/File/Filter set of listboxes/comboboxes - everything else would be pretty easy to implement from here.   Laurie..   - Original Message -

[DUG]: format function

2003-06-26 Thread Neven MacEwan
Hi all I want to use the format function and pass it a dynamic array of values, Can this be done S := 'Name is %s %s'; Result := format(S,A) but how do I declare A? TIA Regards Neven N.K. MacEwan B.E. E&E Ph 649 621 0001 Fax 649 621 0400 [EMAIL PROTECTED]

[DUG]: Paradox problem

2003-06-26 Thread Jeremy Coulter
Title: Message Hi all. I had to install some software ona  PC for someone the other day that uses the BDE and paradox. Now, not using either of them in a number of years, I am not entirly sure what this error means, or how to either solve it or work around it. The OS is Win XP, the user DOE

[DUG]: Conversion

2003-06-26 Thread Alistair George
Hi all. Can anyone translate this to pascal for me? FILE *fp fp=popen ("cdrecord -atip", "r") fread (fp) //gets the output --- New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED] Website: ht

Re: [DUG]: Need component to imitate Windows Explorer

2003-06-26 Thread Dennis Chuah
Take a look at open sourced VirtualExplorerTree at http://groups.yahoo.com/group/VirtualExplorerTree/. or TurboPower Shell Shock (now open source) at http://sourceforge.net/projects/tpshellshock/ - Original Message - From: [EMAIL PROTECTED] To: Multiple recipients of list delphi Sent: We

Re: [DUG]: Re-Post Modal FormClose

2003-06-26 Thread Neven MacEwan
Paul If ModalResult is set to anything other than 0 it will close the form so you could make your own type TFormResult = (frNone, frButton1) and set this 'modal result' on the click event of your button you'd have to cast back to check it if TFormResult(Form.ModalResult) = frButton1 then...