Display Problems

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

In my database when you click on a button on the switchboard, the form that
pops up is not complete. At the bottom, you can see part of the screen that
was previously viewed. What could be the problem?
 
Oh, and it doesn't only do it on my computer... I tried it on someone
else's... same thing.
 
Hi

Add this to the OnOpen event of the new form

DoCmd.Maximize


To do this
Open the new form in design view
Right the form (the grey area outside the detail)
Open the properties options box
Select the Event column
Select the OnOpen

You will see this

Private Sub Form_Open(Cancel As Integer)

End Sub

You need to add the one line of code so it looks like this

Private Sub Form_Open(Cancel As Integer)
DoCmd.Maximize
End Sub

Save and go back to your swtichboard and try the button again.

Good luck with your project, hope this helps.
 
That's already there.... It's a glitch in one of the forms.... It's more like
you can see parts of the previous screen on the form. It's not like the form
was partially minimized.
Thanks.
 

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

Back
Top