Why form is show blank?

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

Guest

I try to create form from two tables (Both of them is related with another
table), use form wizard. After click finish,It shows blank, no any text box
but in design view it has object all, why?
Table1 has 3 fields : MaintID (Index Duplicate OK),V1, V2
Table2 has 3 fields : MaintID (Index Duplicate OK),M1, M2
Don't suggest me to integrate two table please.
 
It's not possible to create a form based on more than one table. You have to
create a query that joins the two tables, and base your form on that query.

If you're not seeing anything on your form, the implication is that there's
no data to show, and that the recordsource for the table isn't updatable (if
it were updatable, you would see blank text boxes to allow you input data).

Open your form in design mode, and find the RecordSource property for the
form. Paste whatever's set for that property here.
 
Back
Top