Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

dynamic modifications of datawindows

Status
Not open for further replies.

netmadcap

Programmer
Jul 1, 2003
10
US
Hi,

I have a datawindow object on a window. The dataobject is a
datawindow which has a column with editmask as
dropdowndatawindow. I am dynamically changing the child
datawindow as follows:

dw_fltrval.Modify("fltrval.dddw.Name='" +
dw_datadict.GetItemString(ll_row, 'dw_name') + "'")
dw_fltrval.Modify("fltrval.dddw.DataColumn='" +
dw_datadict.GetItemString(ll_row, 'data_col') + "'")
dw_fltrval.Modify("fltrval.dddw.DisplayColumn='" +
dw_datadict.GetItemString(ll_row, 'disp_col') + "'")

The above works if the child datawindow does not have any
arguments. Now how can I modify the retrieval arguments for
the child datawindows?

Thanks in advance.
 
Hi,

You have to moidify dinamically the source of your DDDW. You can then modify the arguments (number and type).
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top