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

    Access Internet Data with Delphi 7

    I came upon this when looking for a similar webmining solution: Powtils, a modern Pascal web package Good luck!
  2. YishGene

    Array access violation on program shutdown

    OK forget my (stupid) remark about the garbage collector, I see your point and will implement it.
  3. YishGene

    Array access violation on program shutdown

    OK thanks a lot, I'll try this next time I'm at work (need the hardware to run it). One thing I don't understand from your post is - why in your code do I need to free the created objects? I thought this should be dealt with by the garbage collector. Do I need to .Free them or how should I...
  4. YishGene

    Array access violation on program shutdown

    PElement is simply type PElement = ^TElement;, I need the pointer type to allocate memory for the TElement objects so I can store them in the TTreeNodes in their Data properties. Or so I think at least, I remember spending many hours until I got this to work without access violations. Yes...
  5. YishGene

    Array access violation on program shutdown

    OK thanks for your help whosrdaddy. Adding MovingTable := nil; StillTable := nil; at the end of the function does not fix the crashes unfortunately. Here's one example of code creation from a file, which also makes clear that I'm a complete novice... Pointers are simple and...
  6. YishGene

    Array access violation on program shutdown

    From Copy's help file: Besides, part of the point of this code is that the assignments in the last loop affect FY- and FXmotiontable, not a local copy of them that subsequently dies when the function finishes.
  7. YishGene

    Array access violation on program shutdown

    svanels, Sorry for being unclear, this is Delphi 6. The Windows components are there but irrelevant to this problem afaik. The entire code is far to big to post here so I cut out the part I believe contains the problem. Thanks !
  8. YishGene

    Array access violation on program shutdown

    Hi, I have a problem with a large program I wrote, under certain conditions I get access violations when I exit the program (but not as far I tried when it's still running). I've narrowed it down to the following part, it's a routine that only gets called by the object's constructor (FX- and...

Part and Inventory Search

Back
Top