user defined type

  • Thread starter Thread starter Mihai
  • Start date Start date
M

Mihai

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
 
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.
 
Back
Top