[progress Communities] [progress Openedge Abl] Forum Post: Re: Connecting Progress Query To...

  • Thread starter Thread starter Stefan Marquardt
  • Start date Start date
Status
Not open for further replies.
S

Stefan Marquardt

Guest
As Laura mentioned: srcProps = NEW Progress.Data.BindingSource(query qProps:HANDLE). should solve the compile error, SCROLLING is a good hint by Mike. (hidden in the doc) DEFINE PRIVATE QUERY qProps FOR ttProps SCROLLING. But I think there is missing OPEN QUERY, if it compiles, you should get a runtime error. I run my own first tests and used dynamic queries and datasets but not static ones. Used you example, fixed your source error, added open query to a populated temp-table and I get now the column headers without any records in the Grid. Can you add a correct doc link, the one you added is not working. I can't find any example in the docs with static query, binding-source and a grid control, perhaps you did it. I "love" Progress docs, they give you only piece of the cookies but very rare a working example, only for .NET: DataTable custTable = custOrderDataSet.Tables[Customer]; bindingSource = new BindingSource(); bindingSource.DataSource = custTable; customerGrid = new DataGrid(); customerGrid.DataSource = bindingSource; I can't find a ABL.NET example to use a temp-table as DataTable.

Continue reading...
 
Status
Not open for further replies.
Back
Top