M Mihai Jun 14, 2007 #1 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
P Phillip Ross Taylor Jun 14, 2007 #2 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 Click to expand... 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.
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 Click to expand... 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.