Hello I am working with arrays for a wxGrid table: WX_DECLARE_OBJARRAY(wxString, StringArray); WX_DECLARE_OBJARRAY(StringArray, StringGrid);
StringGrid my_data; //my_data is an array of arrays of wxString objects.
So my variable member my_data contains all the data of the wxGrid. I want to make a search using the function: int Index(StringArray, bool bFromEnd = FALSE); But the function returns me wxNOT_FOUND. I have tried passing one StringArray of one column and also with all column (so a complete line) but no match were found.
- Where am I wrong? - And can I search for just one cell value at a time or for a full row?