Preview a Crystal XI Report using Microsoft Access 2003

D

Dick

I used register the crystl32.ocx then put the active X control
(Crystal Report Control) on the form name it Report1 and write the
following code assigned to a button:

Private Sub cmdPrint_Click()
With Report1
..WindowShowRefreshBtn=True
..ReportFileName = "C:\SomeReport.rpt"
..Action=1
End With
End Sub

Now I get an error on .Action=1

Does anyone know if the code has changed for Access 2003 or is it that
Crystal XI doesn't work with Access 2003?
 
L

Larry Linson

I don't know any Access developers, power users, and especially not casual
users who use Crystal with Access. It would be "hit or miss" to find someone
in a newsgroup about the Reporting features of Access who could answer a
question about Crystal.

Has _what_ code changed with Access 2003?

Crystal's always been a useful adjunct to VB, VB.NET, C++, C# and etc., and
you are far more likely to get an answer in a Crystal newsgroup, or a
newsgroup about one of the other languages I mentioned than here.

Larry Linson
Microsoft Access MVP
 
D

Dick

I don't know anyAccessdevelopers, power users, and especially not casual
users who useCrystalwithAccess. It would be "hit or miss" to find someone
in a newsgroup about the Reporting features ofAccesswho could answer a
question aboutCrystal.

Has _what_codechanged withAccess2003?

Crystal'salways been a useful adjunct to VB, VB.NET, C++, C# and etc., and
you are far more likely to get an answer in aCrystalnewsgroup, or a
newsgroup about one of the other languages I mentioned than here.

Larry Linson
MicrosoftAccessMVP









- Show quoted text -

Thanks,
Dick
 

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