|
Debug.Print zCelItems("*").Count
ED
|
not used
|
RT
|
read only
|
Object to get all Items are actually in memory...
'########################################################## '### Get all CEL Items of the project ### '########################################################## Public Sub GetAllItems() Dim i As Integer 'get all items in memory... For i = 0 To thisProject.Cel.CelItems("*").Count - 1 'print text of item to outputwindow Debug.Print thisProject.Cel.CelItems("*").Item(i).Text Next i End Sub