MSflexgrid to XML file conversion

111 Views Asked by At

I am trying to convert MSflexgrid data to datatable or XML.

But I am not sure about this.

Can anyone please confirm me

1

There are 1 best solutions below

0
codeMonger123 On

Couldn't you just do something like this?

Public Function BuildDataTable() as DataTable 

For Each myFG In FG.Rows

        MyDataTable.Rows.Add(myFG .column("ColumnName").ToString)
Next

return MyDataTable