Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I have create classes with the Let and Get functions and now I would like to
use these functions to store and retrieve data in the class which will then be put into a collection. Here is the class functions: Private pBusPart As Double Private pStartTime As Date Private pIndex As Integer '''''''''''''''''''''' ' BusPart property '''''''''''''''''''''' Public Property Get BusPart() As Double BusPart = pBusPart End Property Public Property Let BusPart(Value As Double) pBusPart = Value End Property '''''''''''''''''''''' ' StartTime property '''''''''''''''''''''' Public Property Get StartTime() As Date StartTime = pStartTime End Property Public Property Let StartTime(Value As Date) StartTime = Value End Property '''''''''''''''''''''' ' Index property '''''''''''''''''''''' Public Property Get Index() As Integer Index = pIndex End Property Public Property Let Index(Value As Integer) pIndex = Index End Property |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
What does it take to get class functions to execute? | Excel Programming | |||
Class programming - how to return chartobject from a class? | Excel Programming | |||
Class modules: parametrize class object fields | Excel Programming | |||
Passing Custom Class Variables through Functions | Excel Programming | |||
class functions | Excel Programming |