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

    Question defining a packed record using the Case Statement

    I just ran across some code that declares a complex packed record: aSInt = Integer; entity = packed Record Enttype : byte; field2 : double; ... //continues with other standard fields and then uses this case CASE aSInt OF entlin: (linpt1, linpt2...
  2. JES1904

    Using a String for Data Storage

    I am working on a project for a Cad program in which I must embed data in the Cad file. The tools for doing so in the cad program allow for embedding boolean, integer, double byte and string values, one at a time. There is a lot of data and the best way to store it would be in a single packet...
  3. JES1904

    Using ClientDataSet with a local file.

    I am trying to use a clientdataset without an associated Table. I am attempting to extract and edit data from a Cad program. The Cad program has an interface in which the user selects specific entities within the Cad file (lines, circles, text etc) and provides basic information and attributes...
  4. JES1904

    Debug Issue Problem with booleans in Local Variables window

    I have a test in a method that reads class wide integer properties of front (= 35) & back (= 30) procedure runcheck (iscomplete : boolean); begin iscomplete := front > back; end Procedure DoSomething; var done : boolean Begin done := false; Repeat runcheck (done); Until done...
  5. JES1904

    Delphi Programming Problem Solver

    I recently picked up a copy of this old Delphi book for referene, but it is missing the code disk. The book is out of print from a dead end publisher - IDG books. Does anyone have a copy of the code or a site to download it from?
  6. JES1904

    Problem with Library / browsing paths using Delphi IDE

    I have a recurring problem: On some days, it appears that Delphi has problems with identifying some of the files in my "Uses" section. Certain files will be underscored in red zig-zag and identified in the structure window as "cannot resolve unit name ...". If I right click the unit and ask...

Part and Inventory Search

Back
Top