I have created a report by using the WCF service as per the vedio http://tv.telerik.com/watch/reporting/video/telerik-reporting-getting-started-with-silverlight-report-viewer
My WCF Service requires an arugument to be passed to get the result..
______________________________________________________________________________________________
For example
Dim m_nPatientId As Integer = 109
'For Patient History
Public Function GetPatientDetials() As List(Of DAOfficeReports.EMRRepotsServiceReference.PatientL)
Dim objPatientDtl As New List(Of EMRRepotsServiceReference.PatientL)
objPatientDtl = objEmrService.GetPatientDetials(m_nPatientId) *Here i should pass patient id from Silverlight)
Return objPatientDtl 'For Patient History
End Function
_____________________________________________________________________________________________________
Iam able to pass a static argument but could'nt pass it from silverlight application dynamically to Report class library..
Pls help me...
Reena
My WCF Service requires an arugument to be passed to get the result..
______________________________________________________________________________________________
For example
Dim m_nPatientId As Integer = 109
'For Patient History
Public Function GetPatientDetials() As List(Of DAOfficeReports.EMRRepotsServiceReference.PatientL)
Dim objPatientDtl As New List(Of EMRRepotsServiceReference.PatientL)
objPatientDtl = objEmrService.GetPatientDetials(m_nPatientId) *Here i should pass patient id from Silverlight)
Return objPatientDtl 'For Patient History
End Function
_____________________________________________________________________________________________________
Iam able to pass a static argument but could'nt pass it from silverlight application dynamically to Report class library..
Pls help me...
Reena