I have created a simple report using Crystal Report 32 that come with my vb6.
I then add a crystal report component and a command button into my form. In my command button click event i put in this code:

private sub command1_click()
crystalreport1.ReportFileName = app.path "\test.rpt"
crystalreport1.DiscardSaveData = True
crystalreport1.PrintReport
end sub

when I click on the command1 button nothing appear! I have a printer configured for the crystall report.
there is also no report of error during compilation or executing this code.

Where is my error????