ZuperDuper
Programmer
Hi, I am loading previously created Crystal Reports multiple times through same Crystal Viewer, first report loads fine, but consequtive tries fail. Here is the procedure:
With form3.CRVIEWER9
.ReportSource = ("C:\Program Files\dc analysis reports\proglist.rpt")
.Show()
form3.Enabled = True
form3.Show()
form3.Text = "Programmer Report"
.Visible = True
End With
The exception occurs on the '.ReportSource = ("C:\Program Files\dc analysis reports\proglist.rpt")' line. I get an unhandled exception error: 'Specified Argument was out of range of valid values.'
Why is that happening and is there a way to fix it?
You should never underestimate the predictability of stupidity.
With form3.CRVIEWER9
.ReportSource = ("C:\Program Files\dc analysis reports\proglist.rpt")
.Show()
form3.Enabled = True
form3.Show()
form3.Text = "Programmer Report"
.Visible = True
End With
The exception occurs on the '.ReportSource = ("C:\Program Files\dc analysis reports\proglist.rpt")' line. I get an unhandled exception error: 'Specified Argument was out of range of valid values.'
Why is that happening and is there a way to fix it?
You should never underestimate the predictability of stupidity.