i have a datastore that when retrieve and has results, the rows should be displayed in another window
ds_1.Retrieve()
IF ds_1.RowCount() > 0 THEN
i_str_pass.po[1] = ds_1 OpenWithParm(w_error, i_str_pass)
END IF
i_str_pass is a structure and po is a powerobject
i want to display the results of ds_1 in w_error's datawindow without needing to retrieve it again
i tried calling in w_error
str_pass i_str_pass
i_str_pass = Message.PowerObjectparm
dw_1 = i_str_pass.po[1]
i debugged and saw that I passed it correctly but the data that was retrieved were not showing at all anything im doing wrong? thanks in adv.