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. NordicSystems

    Opening text files

    An alternative to using a memo is to use a TextFile variable. The following function accepts the file name as a parameter and returns the first line of the file as a string: function ReadFirstLine(FileName: TFileName): String; var F: TextFile; begin AssignFile(F, FileName); Reset(F)...
  2. NordicSystems

    Native Access Driver

    Can someone tell me what file format of MS Access is acceptable to the native drivers with D3, D5, D6? nordicsys@aol.com
  3. NordicSystems

    Help Tip Messages in D3

    I am looking for the way to display "windows-look-and-feel" help tip messages in Delphi 3 from a dialog box with the question mark button in the caption. Any help will be appreciated. nordicsys@aol.com
  4. NordicSystems

    Paradox Index Out-Of-Date

    A client uses a D3 program with Paradox database on MS NT LAN with win95 and 98 workstations. Less than 20 concurrent users at all times. Executable file and database are on server and private dirs are set to local drive in program. Problem is that the main table (orders) or its immediate 1-M...
  5. NordicSystems

    FoxPro tables in Delphi 5

    Having installed Delphi 5 (upgraded from 3) I want to use the Database Desktop to create a foxpro table but it won't let me saying "Capability not supported". Since Delphi 5 includes a "native foxpro driver" I did not expect this problem. Can anyone instruct on how to do...
  6. NordicSystems

    Findkey, Locate, Lookup : Delphi 3

    Using these three functions in Delphi 3 I am trying to benchmark performance variations between a Paradox table (searching only on primary and secondary indices) and a dBaseIV table (searching a maintained, single-field, non-expression index) on a LAN. I have exhaustively tested all three...

Part and Inventory Search

Back
Top