Answer Posted / vishal sinha
The Let property is used to assign values to the attributes
of a class. The following is an example of a Let property.
Public Property Let Minute(ByVal m As Integer)
If (m >= 0 And m < 60) Then
mMinute = m
Else
mMinute = 0
End If
End Property
With Get and Set, it's as simple as it sounds...
The Get property is similar to a function in that it returns
a value. It is used return the attributes of a class. The
following is an example of a Get Property called Minute that
returns the private data member, mMinute.
Public Property Get Minute() As Integer
Minute = mMinute
End Property
Objects may not be assigned values directly. Instead, an
object reference is required. With properties, this is
achieved using the Set property.
Public Property Set EndTime(ByVal t As CClock)
Set mFinish = t
End Property
| Is This Answer Correct ? | 6 Yes | 0 No |
Post New Answer View All Answers
Explain OLE Drag and Drop.
How to load and unload child forms.
Maximum Control Names length?
What are the types of line styles available in Treeview Control?
I'm getting error message "Reserved Error [-nnnn] ("There is no message for this error")" from Jet Engine 2.0.Why?
Timer control contains ________ no. of events.
what controls have you used in your project?
Explain the usage of Web Browser Control?
___,___ and __ are difference between image and picture controls.
What are the types of Error? In which areas the Error occurs?
How many File System Controls are there ? Explain.
what are the Differenct Types of Procedures in VB?
How do I implement Undo?
How can you force new objects to be created on new threads?
Explain about creating VB applications in excel?