SOLVED:
The problem was the word PROPERTY in:
The problem was the word PROPERTY in:
Private Property _oneProperty As String
Public Property oneProperty As String
The correct is:Private _oneProperty As String
Public Property oneProperty As String
Thank you