Hi,
How would I get the value from a cell within a datagrid if I have the column number and row number in C++ when
using datagrids?
I know in C# you use the following syntax:
dtaGrid[1,2];
But, if I try this in C++ it gives me the following error:
error C2845 '[' Cannot perform pointer arithmetic on __gc pointr 'System::Windows::Forms::DataGrid__Gc *'
Thanks