' Creating and configuring the ObjectDataSource component:
Dim objectDataSource As New Telerik.Reporting.ObjectDataSource()
' GetData returns a DataSet with three tables
objectDataSource.DataSource = vDatos.GetPagos_x_Cliente(gRep3_Cliente_id, gRep3_Fec_Ini, gRep3_Fec_FIn)
Indicating the exact table to bind to. If the DataMember is not specified the first data table will be used.
objectDataSource.DataMember = "GF_PAYS_FOR_CUSTOMER" '
' Assigning the ObjectDataSource component to the DataSource property of the report.
Me.DataSource = objectDataSource
-----------------------------------------------------------------------------------
so how i use other datasource ??
I attach a picture to describe what I need.
Need help thanks
Private Sub txt_customer_id_ItemDataBound(sender As System.Object, e As System.EventArgs) Handles txt_customer_id.ItemDataBound<br><br> Dim vCustomerID As Integer = Nothing<br> vCustomerID = txt_customer_id.Value<br><br> vRec = vData.GetBalance_Customer(vCustomerID.Value)<br> vRec.Read()<br><br> txt_balance_.Value = vRec.Item("balance_customer")<br> vRec.Close()<br>End Sub<br>