G
Guest
Occasionally, I will use forms that contain data in rows. The number of rows
in a given form may vary from time to time depending on how many topics I
include on the form.
Is there a way to adjust the height of the form with code so that it is just
big enough to hold the amount of information I place into it each time it
opens? This is what I've tried so far (coding in a module apart from the
form):
dim h as integer
h = 1
For x = 0 to numTopics - 1
h = h + .4167
Forms!Checks!Detail.Height = h
Next
No luck. Any other suggestions? As always, thank you in advance.
in a given form may vary from time to time depending on how many topics I
include on the form.
Is there a way to adjust the height of the form with code so that it is just
big enough to hold the amount of information I place into it each time it
opens? This is what I've tried so far (coding in a module apart from the
form):
dim h as integer
h = 1
For x = 0 to numTopics - 1
h = h + .4167
Forms!Checks!Detail.Height = h
Next
No luck. Any other suggestions? As always, thank you in advance.