luis filipe romao rodrigues wrote:
Hello,

I just started to use Lazarus.

In delphi i could evalute ItemListBox.itemindex but in lazarus I get "A
parse error in expression, near `itemindex'."

Is it possible to evalute object properties?

I also tried ItemListBox^.itemindex.

Debugging is currently done with the gdb debugger. GDB has no knowledge about properties, so there is no way to evaluate them. If a property is directly read from a variable the you can evaluate ItemListbox.FItemIndex (for example). If the read part is implemented by a function call GetItemIndex, then it is impossible to evaluate (you cannot call functions)

Marc

_________________________________________________________________
    To unsubscribe: mail [EMAIL PROTECTED] with
               "unsubscribe" as the Subject
  archives at http://www.lazarus.freepascal.org/mailarchives

Reply via email to