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

    String to Integer to String

    jtheis: per your post 10 May 05 11:45 Rather than use / which is inefficient for this use and can produce rounding and truncation errors in your results, use the bitwise operators (a list in attached from the Delphi helpfile for your convenience). So, to separate the upper and lower bytes...
  2. ToTheMetal

    ReallocMem produces Out Of Memory, but mem is available

    The problem is in a purchased control and the original developer is no longer to be found. The basic problem is the following code from the control: procedure TPline.SetCapacity(NewCapacity: Integer); begin if (NewCapacity < FCount) or (NewCapacity > MaxVertexListSize) then...
  3. ToTheMetal

    Printing Images

    Try using the "Texcellent" library functions for all your printing in Delphi. I switched to using it and and never looked back nor used anything else since! These are not free, but worth every cent.
  4. ToTheMetal

    How to free dynamically created components at runtime?

    The reason you have to go backwards in the loop is because it moves the component indexs down to 'fill in' for the one you just deleted. This makes the next index incorrect. By going backwards, no moving needs to occur so the indexed components you are looping remains correct throughout the...

Part and Inventory Search

Back
Top