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 bkrike 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: rsballard
  • Content: Threads
  • Order by date
  1. rsballard

    syntax errors just have me bumfoozled

    3 syntax errors just don't make any sense to me <--------1st one-------------> Error: Statement expected but expression of type TButton found at the exit statement in: // open the input file AssignFile(inF, hypackFileEdit.Text); Reset(inF); if IOResult <> 0 then begin...
  2. rsballard

    using a group box

    I'm putting a bunch of info labels in a standard group box. Some of the labels are titles for subsequent data and I have them blue bold and a size bigger. I'd like to make the title of the group box blue bold and a size bigger too. However, when I do, all the contents of the group box are...
  3. rsballard

    dynamic array help please

    I have a bunch of files to process, each will have a different number of items to deal with. define some dynamic arrays var array1, array2, array3: array of double; open the first file and scan through it to determine how many data items to process allocate memory for each array...
  4. rsballard

    need a component

    I need to allow my users to examine the first few lines of a text file and indicate by selecting with the mouse which column positions in the file define what fields for input parsing. I can do this with Tmemo and SelStart and SelLength but why re-invent the wheel? Has anyone seen a component...
  5. rsballard

    output big endian IEEE reals

    I'm converting binary data in two programs. Had everything working OK until I found that all the binary data needs to be in Big endian byte order. So... Situation 1: the input data is Intel standard IEEE reals. I need to output same as BIG endian IEEE reals Situation 2: the input data is...
  6. rsballard

    QDialogs &amp; Delphi 7 Personal

    Apparently QDialogs.dcu is not included in the 'personal' edition of Delphi 7. It wasn't installed in the lib directory anyway. Can someone show me how, in lieu of having access to Qdialogs, to do what the QDialogs 'SelectDirectory' procedure does? I want my user to select (with option to...
  7. rsballard

    nearest match method

    I have two text csv files. in file one, field 2 is hh:mm:ss.ss and I will convert that to seconds since midnight and want to find the closest matching value in the second csv file in which field 4 is seconds since midnight. I will then co-mingle the two lines, compute a few delta values and...
  8. rsballard

    finding string data in byte buffer array

    I have a binary file that is a a bunch of consequtive type x = record header: array[1..256] of byte; data: array[1..10000] of single; end The spec calls for a text string of data to appear at the same location of the header in each of these records. We'll it doesn't. It may move around...

Part and Inventory Search

Back
Top