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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by surjay

  1. surjay

    Invalid pointer operation using TChart and TLineSeries

    I've ran into an issue with a TChart and TLineSeries. If if I enter an X value around 1818 and an Y value of 0 with AddXY() right off the bat I get 'invalid pointer operation'. Here's an example function: procedure TForm1.Button2Click(Sender: TObject); var VMinValue: Extended; begin...
  2. surjay

    Using Assigned() with a dynamic array.

    A simple function example: begin if not Assigned(FArray[AIndex]) then FArray[AIndex] := CreateItem(AIndex); Result := FArray[AIndex]; end; where FArray is a dynamic array of objects. It seems that Assigned() doesn't work well here. For example, when Length(FArray) = 1...

Part and Inventory Search

Back
Top