I have created a table in OpenEdge using ABL. I'm now trying to display the table in a UltraWinGrid. I have been following the information found here:
- http://devcenter.infragistics.com/Articles/ArticleTemplate.Aspx?ArticleID=1034
- http://devcenter.infragistics.com/Articles/ArticleTemplate.Aspx?ArticleID=1037
However these are written in c# and vb so the code is not prefect.
So I have a table called test and I've created a dataset like so
DEFINE DATASET WINTEST FOR TEST.
but i want to know how to link that dataset to the ultraGrid. the links about use the code
UltraGrid1.DataSource = DataSet
however this doenst work with ABL. Does anyone have any ideas how to link the table data with the UltraWinGrid?