Hi,
My screen fetches multiple rows from the database and displays on the screen in a Datawindow.
Now the Requirement is to add one more column in the Datawindow at the end, which will dynamically fetch 10-15 values for that perticular row.
My Question is - Should i use DDDW or DDLB ?
If using DDDW, how can i populate the Values for each row ?
If using listBox, AddItem is not working. I am using Syntax as
Dw_1.Object.DDLB_name[curr_row].AddItem(Fetched_Value_1)
Dw_1.Object.DDLB_name[curr_row].AddItem(Fetched_Value_2) etc
My screen fetches multiple rows from the database and displays on the screen in a Datawindow.
Now the Requirement is to add one more column in the Datawindow at the end, which will dynamically fetch 10-15 values for that perticular row.
My Question is - Should i use DDDW or DDLB ?
If using DDDW, how can i populate the Values for each row ?
If using listBox, AddItem is not working. I am using Syntax as
Dw_1.Object.DDLB_name[curr_row].AddItem(Fetched_Value_1)
Dw_1.Object.DDLB_name[curr_row].AddItem(Fetched_Value_2) etc