Continuous Forms Usage

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

Guest

I have a continuous form displaying a list of items to be picked. What I
would like to do is place a button at the bottom of this list, so that it
only appears when the user has scrolled all the way down. Any assistance
would be much appreciated.
 
I have a continuous form displaying a list of items to be picked. What I
would like to do is place a button at the bottom of this list, so that it
only appears when the user has scrolled all the way down. Any assistance
would be much appreciated.

I don't think you can show it by simply scrolling down, but you can if
the user actually makes that last record active.
Add your command button to the form's Form Footer section.
Code the Form's Current event:

CommandName.Visible = Me.CurrentRecord = Me.RecordsetClone.RecordCount
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top