|
ED
|
not used
|
RT
|
avaliable
|
Event is fired, when a new item was added...
Dim WithEvents zCEL As Cel '########################################################## '### Procedures/Events of the Project ### '########################################################## Private Sub Project_Active() 'init CEL Object to get the CelItemAdded event Set zCEL = thisProject.Cel End Sub Private Sub Project_Inactive() 'release object Set zCEL = Nothing End Sub '########################################################## '### Procedures/Events for the CEL DynPicture ### '########################################################## Private Sub zCEL_CelItemAdded(ByVal obItem As ICelItem) 'when a new entry was generated.... Debug.Print "CelItemAdded - " & obItem.Text End Sub