You should be able to have the form open by using something like this:
DoCmd.OpenForm "YourFormNameHere", , , "[YourKeyFieldNameHere]= " &
Me!YourKeyFieldNameHere
--
Bob Larson
Free MS Access Tutorials and Samples at
http://www.btabdevelopment.com
__________________________________
"Ravi" wrote:
> I have to create a note field, which should be tied to the one record on the
> form. In other words, ever record will have commend button and clicking on it
> should open a form specific to that record.
> Your help is much appreciated.