Import a report design?

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

Guest

Hi!
I import a report design and form design from another program with the
same table data. However, when I run it, it won't load the form. I check the
table/query/form/report are there already, but it won't load. Which setting I
missed possible?

Thank you.

fox

Private Sub Report_Open(Cancel As Integer)
' Don't open report if dialog box is not loaded
If Not (IsLoaded("SampleDetialF")) Then
UseOptions
Cancel = True
Exit Sub
End If
End Sub
 
How did you import the report? ... the form? Is there a chance that either
or both are set to use a specific printer that is not available to the new
program/PC?

Regards

Jeff Boyce
Microsoft Office/Access MVP
 
I open the original file, right click the report/form/table which I want to
export, select Export, then target the new file.
Are these steps correct?

fox
 
Just in case, try another approach:

Open the "new" .mdb file.

Use File | Get External ... | Import.

Point to the original .mdb file.

Highlight the objects (forms, reports) and import them.

Do they work now?

Regards

Jeff Boyce
Microsoft Office/Access MVP
 
Back
Top