(Maybe we need a new forum for COM API so to not put this stuff into the PC Beta one?)
The Release Notes claim:
4.0d Beta 1
Logos 4.0d Beta 1 (v4.04.3.9992) was released on May 25, 2010.
New Features
I have created a new VB Application, and can "see" the new "Logos Bible Software 4 Type Library".
It appears to have an interesting selection of goodies, including what might let us "walk" the list of resources.
I have some code that compiles, however this following code always reports 0 resource, as i have no idea what to put in the string value: "All", "Bible" and "*" returns 0 records.
Private Sub Button5_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button5.Click
' Logos4
Dim LCollection = L4L.Application.Library.GetResourcesByResourceType("All")
AddLine("Resource Count = " & LCollection.Count)
AddLine()
For Each LResource As L4.LogosResourceInfo In LCollection
AddLine(LResource.ResourceId)
AddLine(LResource.ResourceType)
AddLine(LResource.Title)
AddLine(LResource.AbbreviatedTitle)
AddLine(LResource.Version)
Next
End Sub