kcmark
I suspect you are retrieving data into a contineous form. If so, the blank line if where the system is expecting data entry. You can "fix" this by using the property of the form called "AllowAdditions" and set it No / False. This property can be set on the form itself, or programatically.
Me.AllowAddtions = False
Now, you will probably wonder how to add new data. You can add a command button, and use the wizard for "Record Operations" -> Add new record.
You may have to enable Me.AllowAddtions = True to get this to work.
Next, if this is for a subform, you can still put the buttons on the subform, or work from the main form and reference the subform.