creating session in VB6 using CDONTS
im trying to create inbox application in VB6. so created an object ses as CDONTS.Session. when im trying to create a session using following code
VB Code:
ses("uname") = txtUName.Text
it showing a error message
Compile error:
Can't assign to readonly property
Any body please help me.
Re: creating session in VB6 using CDONTS
Re: creating session in VB6 using CDONTS
i have created a session object for CDONTS as
VB Code:
Dim ses As CDONTS.Session
and i want to create Session for username & password in login form. when im trying to do this
VB Code:
ses.Session("uname") = txtUName.Text
it showing an error message
Run-time error '-2147219963(80040605)';
Method 'Session' of the object 'ISession' failed.
Actually i want to create inbox by using this session. help me. :confused:
:ehh: :rolleyes:
Re: creating session in VB6 using CDONTS
I'm not that familiar with CDO, but is .Session writable?