Board index » delphi » Graceful quit on start-up failure
Com...@lottery.powernet.co.uk (Matthew)
![]() Delphi Developer |
Sun, 12 Sep 1999 03:00:00 GMT
|
Com...@lottery.powernet.co.uk (Matthew)
![]() Delphi Developer |
Sun, 12 Sep 1999 03:00:00 GMT
Graceful quit on start-up failureMy application requires the presence of database files. If the user However, I get GPF's. I assume the reason is that the functions I call Email appreciated. I respond to every email. |
Rob Tanne
![]() Delphi Developer |
Sun, 12 Sep 1999 03:00:00 GMT
Re:Graceful quit on start-up failureQuote> My application requires the presence of database files. If the user I required a similar functionality for an application we designed to aid If you would like some proven, sample source code, do not hesitate to ask. -- |
Mark Shapi
![]() Delphi Developer |
Tue, 14 Sep 1999 03:00:00 GMT
Re:Graceful quit on start-up failureHere's how I've handled a similar need to check for the existence of FileList[1] := 'assist96.dat'; for q := 1 to 9 do Mark Shapiro |
Jason Wallac
![]() Delphi Developer |
Tue, 14 Sep 1999 03:00:00 GMT
Re:Graceful quit on start-up failureQuoteMatthew wrote: they're not there, show the message, and close.... If you want it in the DPR, you should be able to do something like this: If FileExists('whatever.db') then Application.Run -- |
Rob Tanne
![]() Delphi Developer |
Fri, 17 Sep 1999 03:00:00 GMT
Re:Graceful quit on start-up failure-- Jason Wallace <Dark...@SLSoftware.reno.nv.us> wrote in article Quote> If you want it in the DPR, you should be able to do something like unit called DM. The .DPR should look a lot like this. Application.Initialize; Quote> Jason |
Sundial Servic
![]() Delphi Developer |
Sat, 18 Sep 1999 03:00:00 GMT
Re:Graceful quit on start-up failureIn article <01bc3e23$d80c6640$84c5a...@eweston.wbm.ca> "Rob Tanner" <westbau_technolog...@eagle.wbm.ca> writes: Quote>Jason Wallace <Dark...@SLSoftware.reno.nv.us> wrote in article when a Delphi 1.x application is started on a machine when BDE is not present. As-written, the application dies most ungracefully. In a DLL routine it can I coded around this (e.g. in ChimneySweep) by creating a local modification to |
Markku Nevalaine
![]() Delphi Developer |
Sun, 19 Sep 1999 03:00:00 GMT
Re:Graceful quit on start-up failureQuoteSundial Services wrote: VCL sources? Some dBi.. call perhaps ? |
Chuck Hal
![]() Delphi Developer |
Mon, 20 Sep 1999 03:00:00 GMT
Re:Graceful quit on start-up failureWith care, you could try putting some test code in the PROJECT SOURCE. Method A) program Gridtest; uses {$R *.RES} begin Method B) If the BDE might not be in the standard location (different drive, [IDAPI] [Borland Language Drivers] QuoteMarkku Nevalainen wrote: |