How to get the Child Form in a Master Detail Form Pic Tab in IFS10
- Rumesh Aponso (RMAX)
- Nov 27, 2024
- 1 min read
tbwCustomerOrderLine tte = ((tbwCustomerOrderLine)SalWindow.FromHandle(TabAttachedWindowHandleGet(picTab.FindName(Const.TAB_CustOrdLines)), typeof(tbwCustomerOrderLine)));
nRow = Sys.TBL_MinRow;
while (Sal.TblFindNextRow(tte, ref nRow, 0, 0))
{
Sal.TblSetContext(tte, nRow);
MessageBox.Show(tte.colsCatalogNo.Text);
}
Related Links:
Comentários