ACC: How to Control When Scroll Bars Are Displayed in a Subform

ID: Q181232


The information in this article applies to:


SUMMARY

Moderate: Requires basic macro, coding, and interoperability skills.

You may want to display scroll bars in a subform only as needed. The following function turns the scroll bars on or off according to a preset number. The scroll bars do not appear unless the number of records in the subform is greater than the preset number.


MORE INFORMATION

The following example demonstrates how to use an event procedure in the OnCurrent property of the subform to display or hide the scroll bars:

  1. Start Microsoft Access and open the sample database Northwind.mdb.


  2. Open the Quarterly Orders Subform form in Design view.


  3. Set the OnCurrent property of the subform to the following event procedure:
    
          Private Sub Form_Current()
    
             ' If the number of records in the subform
             ' is greater than 4, display the
             ' horizontal and vertical scrollbars.
             If Me.RecordsetClone.RecordCount > 4 Then
                Me.ScrollBars = 3
             Else
                Me.ScrollBars = 0
             End If
    
           End Sub 


  4. Close the Quarterly Order Subform form and save the changes.


  5. Open the Quarterly Orders form and notice that the subform is designed to display four records at a time.


  6. Use the record selectors to scroll through the records on the main form, and note that the scrollbars appear only when needed to view additional records on the subform.



REFERENCES

For more information, search the Help Index for "ScrollBars property."

Additional query words: inf scrollbar visible hide


Keywords          : kbdta FmsHowto 
Version           : WINDOWS:2.0,7.0,97
Platform          : WINDOWS 
Issue type        : kbhowto 

Last Reviewed: April 28, 1999