Re: [DUG]: Interbase Desktop

2001-09-13 Thread Neven MacEwan
James If you are looking at purchasing something then xCase For Interbase would be worth an eval www.xcase.com (does a lot more than design, RI trigger gen, change scripts etc) Neven - Original Message - From: "James Sugrue" <[EMAIL PROTECTED]> To: "Multiple recipients of list delphi"

Re: [DUG]: Interbase Desktop

2001-09-13 Thread Russell Belding
Hello Ian I also use IBadmin and every problem I have seen with it has been repaired withing 3 days by Pavel Kutakov. The issues you refer to sound very serious. ("ocassional it lets you do changes to triggers and procedures it shouldnt and can corupt the DB" ) Have you informed [EMAIL PROTECTED]

RE: [DUG]: ModuleNavigation and ClassCompletion D6

2001-09-13 Thread Stacey Verner
I have seen this too. It did happen in D4 but it happens more in D6. This functionality doesn't work if there is a bug in your code (or possibly some strage syntax that the ide can't handle??). You should see a message in the message window telling you this. Stacey > -Original Message-

RE: [DUG]: Interbase Desktop

2001-09-13 Thread C Fraser
IB Expert is very similar to quickdesk... (a split from the same code base...) www.ibexpert.com Regards Colin -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf Of Sandeep Sent: Friday, 14 September 2001 10:44 a.m. To: Multiple recipients of list delphi Su

Re: [DUG]: Interbase Desktop

2001-09-13 Thread Sandeep
try quickdesk, it's quite good http://www.ems-hitech.com/quickdesk/ Sandeep Software Developer CFL [EMAIL PROTECTED] http://www.cfl.co.nz --- New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED]

RE: [DUG]: Interbase Desktop

2001-09-13 Thread James Sugrue
Cheers Guys, Will give both a look. -Original Message- From: James Sugrue [mailto:[EMAIL PROTECTED]] Sent: Friday, 14 September 2001 09:33 To: Multiple recipients of list delphi Subject: [DUG]: Interbase Desktop Morning all, Does anyone know of a program that allows the visual creatio

Re: [DUG]: Interbase Desktop

2001-09-13 Thread Ian Fear
On 14 Sep 2001, at 9:33, James Sugrue wrote: We use a Program called IBAdmin for this stuff , lets us do lots of cool stuff but we are verycautious not to use it on a live database as ocassional it lets you do changes to triggers and procedures it shouldnt and can corupt the DB but it includes

RE: [DUG]: Interbase Desktop

2001-09-13 Thread Scott Cree
Try Interbase Workbench www.interbaseworkbench.com It's an excellent tool with loads of good features. Cheers, Scott. -Original Message- From: James Sugrue [mailto:[EMAIL PROTECTED]] Sent: Friday, 14 September 2001 9:33 a.m. To: Multiple recipients of list delphi Subject: [DUG]: Interbas

[DUG]: ModuleNavigation and ClassCompletion D6

2001-09-13 Thread Ian Fear
Hi using D6 module navigation using Ctrl+Shift+Up Arrow or Ctrl+Shift+Down Arrow to move between interface and implementation sections does not seem to work for me, Neither does Code Completion Ctrl+Shift+C does not seem to work for me. Works fine in D4 thought. what am I Missing or is this a

[DUG]: Interbase Desktop

2001-09-13 Thread James Sugrue
Morning all, Does anyone know of a program that allows the visual creation of tables etc in Interbase 6.0, ala Interbase Desktop, or something similar to Database Desktop for Paradox ? Cheers --- New Zealand Delphi Users

Re: [DUG]: Interbase X SQL Server

2001-09-13 Thread Neven MacEwan
Dennis > Also, if you use dbgrids and client side cursors, it keeps record locks on > SQL server until the user scrolls to the end of the recordset. This can > then cause problems on other machines needing to write to the locked > records. I have found that you should either keep the recordsets

Re: [DUG]: I/O error 103 on opening project.... driving me nuts.

2001-09-13 Thread Phil Scadden
> Trying to use a file or some other input that's still being used ? Yes, but what COULD it be. It happens no matter project is being opened and a second try works. Its like a file isnt being closed first time... -- Phil Scadden, Institute

Re: [DUG]: I/O error 103 on opening project.... driving me nuts.

2001-09-13 Thread Colin Dillicar
Trying to use a file or some other input that's still being used ? - Original Message - From: Phil Scadden <[EMAIL PROTECTED]> To: Multiple recipients of list delphi <[EMAIL PROTECTED]> Sent: Thursday, September 13, 2001 3:57 PM Subject: [DUG]: I/O error 103 on opening project driving

RE: [DUG]: Interbase X SQL Server

2001-09-13 Thread Dennis Chuah
> Use native drivers. Don't use the native SQL Server driver as it is slow and full of bugs. Also, if you use dbgrids and client side cursors, it keeps record locks on SQL server until the user scrolls to the end of the recordset. This can then cause problems on other machines needing to write

[DUG]: Forms in threads?

2001-09-13 Thread NIRAV KAKU
Hi, Is it a good idea to create forms in threads? Any precaution to be taken? regards, NIRAV KAKU - From the Shreemat Bhägwat Gïta - 'Sarcasm is the lowest form of wit.' --- New Zealand Delphi Users group - Delp

RE: [DUG]: Interbase X SQL Server

2001-09-13 Thread Sean Cross
The hstmt error is endemic to odbc. It is caused by having more than one active query at a time (an active query is one which has not retrieved all it's rows). To mitigate this try the following: For queries, do a FetchAll in the OnOpen event. Use multiple database components. Use multiple se