The error "Ambiguous name detected: cshort_name"
is caused by having a Let property,
with the same name as the private variable used to store it's value.![]()
Public Property Let cshort_name(Value As String) cshort_name = Value End Property
Give the private variable a new name.
Bookmarks