Hi
when i use tab when cursor on master dw - focus changed according to tab order on the master - until it reaches to last column then the the next row of master dw displays (with correct detail dw)
when i use tab when cursor on detail dw(last row) - focus changed according to tab order it - until it reaches to last column (in last row) then the next row of master display (with correct dw_detail)
I tried all posts written here but no changes
in rowfocuschanged of master dw...
if currentrow < 1 then
dw_detail.reset()
return
end if
long ll_patient_code
if idw_scroll.getrow() > 0 then
ll_patient_code = dw_master.object.patient_code[dw_master.getrow()]
dw_detail.Retrieve(ll_patient_code) //,ll_ex_letter_no,ll_dept_no)
end if