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 Chris Miller 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: *

  • Users: fajac
  • Order by date
  1. fajac

    Dynamic List of Doubles in Delphi

    Here is the code for a Double-list I made some years ago. Used it only once and did not test all methods, so I cannot guarantee it works 100% correctly. unit DoubleList; interface uses Classes; type { Types for the Sort-methods } TDoubleSortMethod = function (ADouble1, ADouble2 ...
  2. fajac

    Out of Memory searching an Access table

    You might try to use a TADOQuery instead of a TADOTable. Try a SQL-string like 'SELECT * FROM [TableName] WHERE ORD_ID=...' and see if the query returns a record.
  3. fajac

    Using Assigned() with a dynamic array.

    It is generally not a good idea to access array-elements that are behind the allocated size of the array. If, like in your example, your array has a lenght of 1, then you should never access elements with an index bigger than 0. Compile your Project with the comoiler-option "Range checking"...

Part and Inventory Search

Back
Top