K
Kelii
I'll be brief.
I have a form that allows users to select a variety of options for a
specific report (e.g., filter, sort). I want to set word wrap as one
option available to the user.
Based on my tests, it does not appear that Access will allow me to set
the report's fields can grow property to true in the form's module.
Does this sound right?
Sample code:
Private Sub cmdPrintPreview()
DoCmd.OpenReport "rptTest", acPreview
If Me.fraWordWrap = 2 Then
Reports!rptTest!FieldTest.CanGrow = True
End If
End Sub
Assuming the above is accurate, can the reports properties be set if I
open in design mode (hidden) before opening in preview mode? Further
assuming that some users will be using Access Runtime, will this
solution work for all my users?
Thanks in advance for any help or direction.
Best,
Kelii
I have a form that allows users to select a variety of options for a
specific report (e.g., filter, sort). I want to set word wrap as one
option available to the user.
Based on my tests, it does not appear that Access will allow me to set
the report's fields can grow property to true in the form's module.
Does this sound right?
Sample code:
Private Sub cmdPrintPreview()
DoCmd.OpenReport "rptTest", acPreview
If Me.fraWordWrap = 2 Then
Reports!rptTest!FieldTest.CanGrow = True
End If
End Sub
Assuming the above is accurate, can the reports properties be set if I
open in design mode (hidden) before opening in preview mode? Further
assuming that some users will be using Access Runtime, will this
solution work for all my users?
Thanks in advance for any help or direction.
Best,
Kelii