Inserting Vertical Scroll bars in subreports

M

Max

Hello,

I am having trouble viewing vertical scrollbars in one of
my subreports. I have created an event procedure within On
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 = 2
Else
Me.ScrollBars = 0
End If

It doesn't seem to take...ideas?

Thanks.

Max
 
D

Duane Hookom

Reports are static once rendered so there is no need for "manipulation"
controls.
 
M

Max

I sorry, this is actually in a data entry form.
-----Original Message-----
Reports are static once rendered so there is no need for "manipulation"
controls.

--
Duane Hookom
MS Access MVP





.
 

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

Top