Phantom Form (Visible Property Set to Yes)

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

Guest

This has happened to me once before, and I don't know how I resolved it.

I have a pop-up form that was working fine and then all of a sudden it won't
show-up when it is opened programmatically. Also if I try to open it from
the database screen, it becomes highlighted with a gray background and the
tool tip at the bottom left corner says Form View. Lastly, if I click on it
as if I were going to rename it, I get an error message that the form can't
be renamed because it is open.
 
Perhaps it is off the screen. Try adding the following line to the Open
event procedure of the form ...

DoCmd.MoveSize 0, 0
 
Thanks. That worked nicely.

Brendan Reynolds said:
Perhaps it is off the screen. Try adding the following line to the Open
event procedure of the form ...

DoCmd.MoveSize 0, 0
 

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