Hi,
I’ve a problem with a datarepeater control. I’ve no error but it’s “empty”, the items are loaded (2 items) but they are empty..How can i check ? I check the binding on the controls and they seem right. I’ve attached the part of the code that should load the control.
Thank you for any suggestion
Giorgia
Thank you but I’ve done.
The problem was in the class that define the binding-source, the fields aren’t not define as property:
Class with error:
Public Class mioProdotto
Public idProdotto As Long
Public codProdotto As String
Public descrProdotto As String
End Class
Correct class:
Public Class mioProdotto
Public Property idProdotto As Long
Public Property codProdotto As String
Public Property descrProdotto As String
End Class
Giorgia
Hi Giorgia,
in order to check this issue we need a small compilable repro case, see our forum guidelines.
Thanks in advance,
Frank