Hello,



I've created a class which contains a dropdownlist property.

Right now, I want to pass this dropdownlist to an existing one
VB Code:
  1. in my class:
  2.     Public ReadOnly Property HoofdNummer() As DropDownList
  3.         Get
  4.             FillList
  5.             Return _HoofdNummer
  6.         End Get
  7.     End Property
  8.  
  9. This is on my page :
  10. Dim oMachine As New Uitrusting
  11.  
  12. me.ddlExisting= oMachine.HoofdNummer

This seems to work if I look in debug mode, my ddlExisting receives all the values but once it's on the page, I don't see any values in the list.

Has anyone got a clue ?

Thx,

Bjorn