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
 
Back
Top