Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. jme501

    Faster without GUI ?

    Hi there, starting an application under NT to process serveral SQL-statement on ORACLE-DB with GUI (just empty Form) it runs about 2 min, witout GUI (Application.ShowMainForm = FALSE) 9 secs. I'm very happy about the speed up, but what I would like to know : Why ? Does anybody has an Idea...
  2. jme501

    Delphi and Oracle!

    Hi, it depends on the delphiversion youre using. Would you like to use ODBC or Native Driver? Anyways, an easy way not to use BDE but using a package. Try this one: NC OCI8 v.0.9.2 beta under http://www.delphispirit.com/rd/Database/2/15 regards Jens
  3. jme501

    Execute external program and wait untill it finishes

    Hi TimSNL, well, the folling example uses "CreateProcress" (which is more appropriate on a 32bit-platform) to start notepad and waits until you close it: [CODE] var StartupInfo: TStartupInfo; ProcessInfo: TProcessInformation; NotepadExe: String; begin...
  4. jme501

    Execute external program and wait untill it finishes

    Hi TimSNL, you should use window API "CreateProcess" to run programm. Then you wait until its finished with "WaitForSingleObject". Ciao, Jens

Part and Inventory Search

Back
Top