user defined type

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Mihai

    #1

    user defined type

    I defined a structure in a VB.Net program.How can access this structure at
    the global level, for example from a class?

    Regards,
    Mihai


  • Phillip Ross Taylor

    #2
    Re: user defined type

    On 14 Jun, 16:35, "Mihai" <bvel...@telus. netwrote:
    I defined a structure in a VB.Net program.How can access this structure at
    the global level, for example from a class?
    >
    Regards,
    Mihai
    put the structure definition and any variable instances of it in a
    public module. This is where you ideally want to put code at the
    global level.

    Comment

    Working...