Blank form problem

dapfeifer

Bringing Maverick Mojo
Local time
Yesterday, 19:28
Joined
Jun 17, 2008
Messages
68
Hey all,

I've uploaded my database to a server, and now whenever I try to open a particular form it show up completely blank. I can open it in design view and all the controls are there, but if I try to actually open the form to use it has absolutely nothing on it and does not show any indication of reading the records I have it trying to pull in.

Any ideas on what the problem is? I've tried loading it with both Access XP and Access 2007.

If you need anymore information I'll try to fill you in as best I can.
 
A blank form generally tends to indicate that the record source of the form contains no data. A query that contains no data will induce this sort of behaviour
 
not only no data - also probably a non-updateable query
 
You can use Me.RecordSet.RecordCount = 0 in the on load event of the form to test if the record source, of the form, contains any data.
 

Users who are viewing this thread

Back
Top Bottom