J
James Coe
How can I expose a WriteOnly Property to the designer when making a
Component?
I have a property:
Public WriteOnly Property Password() As String
Set(ByVal Value As String)
If Not blnPasswordSet Then
DataHandler.Password = Value
blnPasswordSet = True
End If
End Set
End Property
I want to expose it in the property window of the designer but don't want to
make it read/write. Any ideas?
Thanks,
James Coe.
Component?
I have a property:
Public WriteOnly Property Password() As String
Set(ByVal Value As String)
If Not blnPasswordSet Then
DataHandler.Password = Value
blnPasswordSet = True
End If
End Set
End Property
I want to expose it in the property window of the designer but don't want to
make it read/write. Any ideas?
Thanks,
James Coe.