Why not? As long as it is only displayed in the local instance of ANRB, and not shared on the Airnav network, it would be within the usage policy.
My idea has always been that data from the PP OLE/COM interface could be displayed on the NETWORK tab of ANRB. Each of us could then have multilateration on the ANRB map for the price of each of us paying for a PP MLAT subscription.
Very simple code:
Dim MyObject
Set MyObject = GetObject(,"PlanePlotter.Document")
i = 0
while i < MyObject.GetAllPlaneCount()
si0 = MyObject.GetPlaneData(i,0)
si1 = MyObject.GetPlaneData(i,1)
si2 = MyObject.GetPlaneData(i,2)
si3 = MyObject.GetPlaneData(i,3)
si4 = MyObject.GetPlaneData(i,4)
si5 = MyObject.GetPlaneData(i,5)
si6 = MyObject.GetPlaneData(i,6)
si7 = MyObject.GetPlaneData(i,7)
si8 = MyObject.GetPlaneData(i,8)
si9 = MyObject.GetPlaneData(i,9)
si10 = MyObject.GetPlaneData(i,10)
si11 = MyObject.GetPlaneData(i,11)
si12 = MyObject.GetPlaneData(i,12)
Wscript.Echo si0, si1, si2, si3, si4, si5, si6, si7, si8, si9, si10, si11, si12
i = i + 1
Wend