Hi all,

I can't found any specifications for the use of basic udt's, a part from a 
small example in the OOBasic guide.
But perhaps there could be some recent documentation that I'm not aware.

Anyway I'm looking for the following information:

- Can I declare a type into an external library?

- Can I use public/private keywords in order to affect the UDT scope? example
        Private Type MyUDT
                ..
                ...
        End Type 

- can I use an UDT as a result type for a basic function? example:

        Type MyUDT
                ..
        End Type 

        Function Test() as MyUDT
                ....
        End Function

- Can I use an UDT as a parameter type into a basic sub or function? example:
        
        sub Test( myParam As MyUDT )
                ...
        End Sub

- Can I use Basic UDT's as parameters for Windows API's as it usually happens 
in VB/VBA ? (guess no)


- Can I declare an array as an UDT's member ? example
        Type MyUDT
                MyList(4) As Long
                ...

- Can I declare a fixed lenght string as an UDT's member ?
        Type MyUDT
                MyFixedString As String*6
                ...


Thank you very much for any information
Paolo Mantovani

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to