Is it possible to range an arrays in Watches view to specific index range? Sometimes I work with arrays that contain 100Ks lines, and Watches limit the view to index 131071... I would like to see more than this, or perhaps a range of indexes like between 200,000 and 250,000. Is this possible?


Is it possible to range an arrays in Watches view to specific index range? Sometimes I work with arrays that contain 100Ks lines, and Watches limit the view to index 131071... I would like to see more than this, or perhaps a range of indexes like between 200,000 and 250,000. Is this possible?

Comments

  1. Yes, shame is not in Delphi. Maybe one day.

    ReplyDelete
  2. In the debugger, I think you simply write e.g.
    FInts[15000],100
    to display the 100 items starting at index 15000.

    ReplyDelete
  3. A. Bouchez Unfortunately you cannot expand that display anymore.

    ReplyDelete

Post a Comment