Reg: GridView in GUI

Posted by Admin on 04-Nov-2009 07:05

Hi,

          how to bind data in gridview in progress 4GL? Help me as soon.

All Replies

Posted by Admin on 04-Nov-2009 14:08

10.2A, GUI for .NET?

Drop a ProBindingSource on the Form and then:

DEFINE QUERY qQuery FOR Customer SCROLLING.

OPEN QUERY qQuery FOR Customer NO-LOCK.

bindingSource1:Handle = QUERY qQuery:HANDLE .

ultraGrid1:DataSource = bindingSource1 .

This thread is closed