|
|
|||||||||
|
|||||||||
|
|||||||||
| |
|||
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
some simple questions
Hi
What is property let? What is property get? What is COM and DCOM? What is late binding and early binding? What is stream in vb? Thanx for help In advance |
|
#2
|
|||
|
|||
|
I'll see if I can help you out...
Quote:
These are used in classes to provide functionality when either getting or setting your properties. Here's an example. Code:
Class User Public FirstName Public LastName Public Property Get Name Name = FirstName & " " & LastName End Property Private p_email Public Property Get Email Email = p_email End Property Public Property Let Email(value) ' perform some validation p_email = value End Property End Class I'm not that familiar with the others so I'll let someone else explain them. Hope I helped.
__________________
Kind Regards, John Rebbeck john@interspire.com ICQ# 74637937 |
![]() |
| Viewing: Dev Articles Community Forums > Programming > ASP Development > some simple questions |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|