hai,
I have a problem with my vb code,displaying run time error 3705,"Operation is not allowed when object is open".How to solve this problem.i am using MS access as backend.
Private Sub Command1_Click()
DE1.combine (txtLabNo.Text)
DataReport2.Show
End Sub
error is displayed in line 2.
actually the project is developed for a lab.I want to generate a data report based on the parameter.For this i add a new comand to the connection property of data environment.and in the command properties,on the sql builder section i add the following
SELECT T1.*, T2.* FROM patient_entry T1, combine_result T2 WHERE T1.trc_lab_no = ?
this is to combine the records of two tables and make them as one single data report.
so please advise....


Reply With Quote
