<i><font color="#663300">Is there a method to move the record programmatically or is it just GO (recno), THISFORM.refresh() (using iBizObj, iBizObjForm)
Regards Bhavbhuti </font></i>
Greetings Bhavbhuti,
Assuming that you are using the bizobj registry:
LOCAL loBizobj loBizobj= thisform.GetParentBizobj( 'myBizobj')
loBizobj.First() loBizobj.Next()
lcPk= loBizobj.GetParentKey() lcVal= loBizobj.GetFieldVal( 'thatField')
If the bizobj.cRegistryLabel property is populated ( 'myBizobj') then it will be registered automatically during creation. Enjoy. James Sayer ©2001 James Sayer |