hi,
what does the following statement mean and what does it do?
Dim obTest As Record.Class1 =
CType(Class2.Ge tSessionInfo(cl ass3.TestConsta nt), Record.Class1)
GetSessionInfo( ) simply does this Return Me.Session(name )
TestConstant is a contstant containing "test.teste r"
What does me.session(name ) do?
Also, since class1 has many methods, about 10 properties, and 2 collections
does this assign structure of properties to obTest?
Thanks a lot.
what does the following statement mean and what does it do?
Dim obTest As Record.Class1 =
CType(Class2.Ge tSessionInfo(cl ass3.TestConsta nt), Record.Class1)
GetSessionInfo( ) simply does this Return Me.Session(name )
TestConstant is a contstant containing "test.teste r"
What does me.session(name ) do?
Also, since class1 has many methods, about 10 properties, and 2 collections
does this assign structure of properties to obTest?
Thanks a lot.
Comment