How to make new record at top of Form (Datasheet View)

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I searched for answer and found "Me!FirstControlName.SetFocus"...but not sure
how to use and if it actually can solve my problem.

Not sure what "first control name" means -- is that the first field in the
form?

Thanks,

John
 
jmuirman said:
I searched for answer and found "Me!FirstControlName.SetFocus"...but
not sure how to use and if it actually can solve my problem.

Not sure what "first control name" means -- is that the first field
in the form?

Not sure what you're question is. The code you are quoting has nothing to do
with the subject line in your post.

If what you want is a datasheet or continuous form where the new record row is
at the top instead of at the bottom then this is not possible. For a datasheet
or continous *subform* you can simulate it by using two subforms (one for new
records and one for existing) by placing the "new record" subform above the
other one.

None of that has anything to do with setting focus which is what your line of
code does.
 
Back
Top