Move to Particular Record

Hi, How to move to a particular record when you open a form, it allways open on a record where you last closed. Thanks Bobby

In OnOpenForm trigger make assignment: Rec := rec_YourRecord; And now the form is opened on record defined in rec_YourRecord. Jozef Kovac

Hi Bobby, On the form properties, you can reach for a property called SourceTablePlacement option are Saved, First, last, record. Use these to use the record placement when yu open and close the form.

Hi bobby write down to following code On Find() trigger Primary field = //(Value you want to search for) rec.find(’=’); code written above will move the pointer to the defined record on form.