Hi
\r\n
\r\nI am confused about the crystal reports veiwer. When it is loading, which can take some time, I would like the user to be informed of the progress but this does not seme to happen. I have set the CRV.EnableProgressControl = True and it shows a progress bar at the top of the viewer but it sits there motionless.
\r\n
\r\nI have had a search on the forum for any information on this but all I could find was something saying it was not possible to show a progress bar. Could this realy be the case?
\r\n
\r\nIf you can\'t show a progress bar is it possible to show something moving to keap the user entertained like:
\r\n
\r\n
\r\n
Code:
\r\n
CRV.ViewReport\r\nCRV.EnableProgressControl = True\r\nCRV.ReportSource = crxReport\r\nCRV.ViewReport\r\nCRV.Refresh\r\nCRV.Visible = True\r\nfraProgress.Visible = True\r\nMe.Show , frmParent\r\nfrmParent.SetFocus\r\nIncrament = 1&\r\nDo While .CRV.IsBusy = True\r\n DoEvents\r\n Debug.Print "Loading "\r\n PB.Value = PB.Value + Incrament\r\n If PB.Value = PB.Max or PB.Value = PB.Min Then\r\n \'Show a Kit effect\r\n Incrament = Incrament * -1&\r\n End IF\r\n PB.Refresh\r\nLoop\r\nfraProgress.Visible = False
\r\n
\r\nBut when I try this I get one debug print despite the load taking up to a minute!
\r\n
\r\nAny help would be appeciated.

\r\n \r\n\r\n