Can't get the Graph visible in print or export

G

Guest

I have Access2007 and I have developed a report with some fields,
pictureobjects and a small 'Microsoft Graph Chart' object down in the right
corner.
This Graph object handles its own data and are not dependent of the report.

In the following scenarios the Graph is VISIBLE

1. I open the report and view it on the screen
2. Using the method for print
DoCmd.OpenReport "Test", acViewReport, , "[Datum]=#" & Me!Datum & "#",
acWindowNormal
DoCmd.PrintOut
3. Using the method for print
DoCmd.OpenReport "Test", acViewNormal, , "[Datum]=#" Me!Datum) & "#",
acWindowNormal

In the following scenarios the Graph is INVISIBLE

1. I open the report and print it from the application menus.
2. Using the method for export to 'snapshot'
DoCmd.OpenReport "Test", acViewReport, , "[Datum]=#" & Me!Datum & "#",
acWindowNormal
DoCmd.OutputTo acOutputReport, , acFormatSNP, "Test.snp", False, , ,
acExportQualityPrint
3. Using the method for export to 'PDF'
DoCmd.OpenReport "Test", acViewReport, , "[Datum]=#" & Me!Datum & "#",
acWindowNormal
DoCmd.OutputTo acOutputReport, , acFormatPDF, "Test.pdf", False, , ,
acExportQualityPrint

Why is it VISIBLE in some situations and not in others?

My maingool is to have a VISIBLE Graph when I'm using the export methods.
Then users can view and print it by themselfs.

Any suggestions?
 
M

Michael

Is there any code, whatsoever, in your report that has anything to do with
the visible/invisible property?
 
G

Guest

There is no code in the report - but there is two textbox object, in the
report, that have the VISIBLE property set to FALSE.


Michael said:
Is there any code, whatsoever, in your report that has anything to do with
the visible/invisible property?

Kennet said:
I have Access2007 and I have developed a report with some fields,
pictureobjects and a small 'Microsoft Graph Chart' object down in the
right
corner.
This Graph object handles its own data and are not dependent of the
report.

In the following scenarios the Graph is VISIBLE

1. I open the report and view it on the screen
2. Using the method for print
DoCmd.OpenReport "Test", acViewReport, , "[Datum]=#" & Me!Datum & "#",
acWindowNormal
DoCmd.PrintOut
3. Using the method for print
DoCmd.OpenReport "Test", acViewNormal, , "[Datum]=#" Me!Datum) & "#",
acWindowNormal

In the following scenarios the Graph is INVISIBLE

1. I open the report and print it from the application menus.
2. Using the method for export to 'snapshot'
DoCmd.OpenReport "Test", acViewReport, , "[Datum]=#" & Me!Datum & "#",
acWindowNormal
DoCmd.OutputTo acOutputReport, , acFormatSNP, "Test.snp", False, , ,
acExportQualityPrint
3. Using the method for export to 'PDF'
DoCmd.OpenReport "Test", acViewReport, , "[Datum]=#" & Me!Datum & "#",
acWindowNormal
DoCmd.OutputTo acOutputReport, , acFormatPDF, "Test.pdf", False, , ,
acExportQualityPrint

Why is it VISIBLE in some situations and not in others?

My maingool is to have a VISIBLE Graph when I'm using the export methods.
Then users can view and print it by themselfs.

Any suggestions?
 

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

Top