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 SkipVought 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. Balchy

    Import delimited files

    CV: There is an ActiveX component (F1Book) that provides an Excel style spreadsheet. You can import delimited text into that. One problem with my version is that it only handles tab delimited text, so I create a temporary file, searching and replacing with tabs for white space...
  2. Balchy

    Limit to FileSize function

    Thanks towerbase. Delphi 6 has Tstream and hence TFileStream. The following code worked on a 3.3 Gbyte file. function BigFileSize(Filename:string):Int64; var BigFileStream : TFileStream; begin BigFileStream := TFileStream.Create(Filename, fmOpenRead); BigFileSize := BigFileStream.Size...
  3. Balchy

    Limit to FileSize function

    It appears there is a limit to the FileSize function in Delphi 6. The function returns a 4 byte integer that reports incorrect file sizes for very large files (e.g. on DVDs). Has this changed in Delphi 7 (say Filesize:integer, to Filesize:Int64)?

Part and Inventory Search

Back
Top