Reply to thread

What happens when you use that code?


Keep in mind that if you want to access the recording objects in the arraylist, you have to convert the type, e.g.


[code]

Dim recordings As New ArrayList

MediaPortal.TV.Database.TVDatabase.GetRecordings(recordings)


Dim recording As MediaPortal.TV.Database.TVRecording

recording = cType(recordings(0), MediaPortal.TV.Database.TVRecording)

recording.Title or whatever...

[/code]


Sam


Top Bottom