Can't change form size (1 Viewer)

MikeAngelastro

Registered User.
Local time
Today, 15:50
Joined
Mar 3, 2000
Messages
254
Hi,

Every once in a while, Access refuses to let me change the size of a form. I looked at the form properties and didn't see anything that looks like it will block changes to form sizes.

Does anyone know why this happens and what could be done about it?

Thanks,

Mike
 

ghudson

Registered User.
Local time
Today, 17:50
Joined
Jun 8, 2002
Messages
6,194
Is it set to a Modal and is the border style set to sizable?

Here is some code I use in the forms OnOpen event force my forms to the size I want...
Code:
'    MsgBox "InsideHeight = " & InsideHeight & vbCrLf & vbLf & "InsideWidth = " & InsideWidth
    InsideHeight = 5000
    InsideWidth = 6000
 

MikeAngelastro

Registered User.
Local time
Today, 15:50
Joined
Mar 3, 2000
Messages
254
Thanks ghudson,

That one works. Funny that I wasn't familiar with the those inside properties.

Mike
 

Users who are viewing this thread

Top Bottom