{ queryRun qr; CustTable ct; // ... if (qr.prompt()) { while (qr.next()) { if (qr.Changed(tableNum(CustTable))) { ct = qr.Get (tableNum(CustTable)); print ct.AccountNum; } } } }