Sub Process_Globals
Type filemanager(name As String ,size As String,LastModified As String ,folder As Boolean)
End Sub
Sub AppStart (Args() As String)
Log("Hello world!!!")
'create sample myInfo with 4 items; the 3rd item is a filemanager
Dim myInfo As Map
myInfo.Initialize
myInfo.Put(101, 345)
myInfo.Put(202, "hello")
Dim fm As filemanager
fm.name = "fm/name"
fm.size = "fm/size"
fm.LastModified = "fm/LastModified"
fm.folder = False
myInfo.Put(303, fm)
myInfo.Put(404, 1.234)
For Each o As Object In myInfo.Values
If o Is filemanager Then
Log("Yes" & TAB & (o Is filemanager)) 'the "o is filemanager"...