D
Doug
I am trying to work with an object and create it like so:
EXTRA.Sessions oSessions = new EXTRA.Sessions();
This doesn't work because I get this error:
'Cannot create an instance of the abstract class or interface
'EXTRA.Sessions'.'
So I try to do this:
EXTRA.Sessions oSessions;
oSessions.Open(strSession);
Then I get this error:
'use of unassigned local variable oSessions'
So I try this:
EXTRA.Sessions oSessions = null;
oSessions.Open(strSession);
and I get this error:
'Object reference not set to an instance of an object.'
So it's like I don't have a way to create this object. Is there some
other way to do this that I'm missing?
EXTRA.Sessions oSessions = new EXTRA.Sessions();
This doesn't work because I get this error:
'Cannot create an instance of the abstract class or interface
'EXTRA.Sessions'.'
So I try to do this:
EXTRA.Sessions oSessions;
oSessions.Open(strSession);
Then I get this error:
'use of unassigned local variable oSessions'
So I try this:
EXTRA.Sessions oSessions = null;
oSessions.Open(strSession);
and I get this error:
'Object reference not set to an instance of an object.'
So it's like I don't have a way to create this object. Is there some
other way to do this that I'm missing?