mrjt Messages: 705 Registered: March 2007 Location: London
Contributor
It's pretty difficult to guess whats wrong becuase the there are many ways in which you could have configured the control. However, my best guess is that you are calling the wrong function.
In the simplest case I believe calling ArrayCtrl::Get(x) will return the contents of Column x on the current cursor row. If there is no cursor row you will get nothing.
I think you probably want to use either GetLine(row), which returns an array of values from a row, or Get(row, column) to get the value of a particular field.