View Full Version : recordsource ,BOF EOF


yogi
02-02-2009, 09:59 AM
Hi there
I created a table and I'm using the recordsource on the form to access my table and the field that I need.

I have put some button on my form next record and previous record.

How do I check for BOF or EOf inside those button without using a recordset?

Thanks

ByteMyzer
02-02-2009, 10:05 AM
Within the Form's Code Module, you can use Me.RecordsetClone.BOF and Me.RecordsetClone.EOF.

yogi
02-02-2009, 10:16 AM
thank you very much