Thread: Class problem
View Single Post
Old Dec 5th, 2006, 4:30 PM   #5
BlackDal
Newbie
 
Join Date: Feb 2006
Posts: 12
Rep Power: 0 BlackDal is on a distinguished road
your property in class is read-only! why?
you can make it read-write...
Property FullPathAndFilename() As String
set(vaslue as string)
   _fullPath = value
end set
Get
Return _fullPath
End Get
End Property
BlackDal is offline   Reply With Quote