I can do this
frmPointofSale.CustomerEmaillbl.Text = node(FlyGrid1.Columns.VisibleColumns(0))
Which works but if we ever add additional columns we have to shuffle the code around to much.
This code will works when columns are not movable, if you're using movable columns (which can be moved, hidden, deleted, reordered) it will be better to fetch data from node's cells via column's FieldName.
node(\"SomeFieldName\")
You can initially link controls to columns, for example:
frmPointofSale.CustomerEmaillbl.Tag = FlyGrid1.Columns.VisibleColumns(0)
and later use like as following:
Dim column as Column = frmPointofSale.CustomerEmaillbl.Tag
frmPointofSale.CustomerEmaillbl.Text = node(column)
This code will prevent you from 'movable columns' problem.