Board index » delphi » Help! - Non Visual Application Design
J Johnson
![]() Delphi Developer |
Tue, 03 Sep 2002 03:00:00 GMT
Help! - Non Visual Application Design
I have an application that I use to import data into a Paradox database from
a text file that usesTBatchMove. I access the text file with a TQuery via a ODBC Text datasource, execute a Batch Copy to create a Paradox table , and then do a Batch Append Update to append to the main table. I have this working now, using OnClick events. However, I need this app to sit on a server and not need someone there to click buttons. I tried reassigning the OnCLick events to the form's OnCreate event, which does work , but still is not usable for my purposes. I am trying to figure out how to have a non - visual application that I can execute by scheduling, flag files, etc. I think that the correct routefor me is either a Console app, or even an NT Service app, but unfortunately I have no knowledge of either, an there is no good documentation that I can find on these. Any suggestions and / or experiance with this type of situation would be greatly appreciated. |