mloucel
Active member
- Local time
- Today, 16:14
- Joined
- Aug 5, 2020
- Messages
- 370
Hello, Gurus.
I have a very particular form, that I need to set SPECIFICALLY at Width 28440 and Height 11835, so that it fits in ALL my monitors across the board, my problem is that everytime I save the form at 5.5 inches, it keeps the size perfectly as I saved it:
But when I made a change and save goes back over and over to this:
about 1 inch, and of course when it opens as a form since it is Continuous form the data is messed up.
I've tried setting this on the ON LOAD event:
But the code is simply ignored, and it goes back to the above form no matter what.
I've seen online some suggestions to do it in the detail section, but that is not what I want, [is a continuous form]
Any help or point to the right direction will be appreciated.
Maurice.
I have a very particular form, that I need to set SPECIFICALLY at Width 28440 and Height 11835, so that it fits in ALL my monitors across the board, my problem is that everytime I save the form at 5.5 inches, it keeps the size perfectly as I saved it:
But when I made a change and save goes back over and over to this:
about 1 inch, and of course when it opens as a form since it is Continuous form the data is messed up.
I've tried setting this on the ON LOAD event:
Code:
Private Sub Form_Open(Cancel As Integer)
' Set the inside width to exactly 28440 twips
Me.InsideWidth = 28440
' Set the inside height to exactly 11835 twips
Me.InsideHeight = 11835
End Sub
But the code is simply ignored, and it goes back to the above form no matter what.
I've seen online some suggestions to do it in the detail section, but that is not what I want, [is a continuous form]
Any help or point to the right direction will be appreciated.
Maurice.