> >
> >
> > I have a form with 3 option buttons named vendor,material & general & three seperate reports for the previous three optionbuttons. Onclick of ok command button, the report for vendor should be displayed & similarly the two should be displayed. My problem is onclick of ok button , the form does call the report but it runs out immediately.
> >
> > Regards
> > Vijayendran S
>
> I think the table has no records. Plz, check this out.
>
> C.Suresh
What is typically do is this :
SET FILTER TO blah blah blah
GO TOP
IF EOF()
=Messagebox("No Data Printed")
ELSE
REPORT FORM blah blah blah
ENDIF
if the messagebox appears , then it means your filter didn't produce result
Hope this could help you.
Foxpro Child