Hi,
I am using COM toolkit with VB6. I use 'Initialize("password"' to init the session and get the database using mySession.GetDatabase("Server1", "Employee.nsf"
-->(At server console, it shows "Opened session for user1/Server1)
Now I want to terminate session forcefully without exiting vb application when I click Logout button.
I tried this... doesn't work !!
-->(At server console, still session for user1 remains open !)
Private Sub logout_Click()
Set domViewEntry = Nothing
Set domViewNav = Nothing
Set domView = Nothing
Set domDocument = Nothing
Set domDatabase = Nothing
Set domSession = Nothing
End Sub
Session cloeses only when I close the application...
Can anybody tell me way to terminate session forcefully ?
Thank you.
Jay Dave
I am using COM toolkit with VB6. I use 'Initialize("password"' to init the session and get the database using mySession.GetDatabase("Server1", "Employee.nsf"
-->(At server console, it shows "Opened session for user1/Server1)
Now I want to terminate session forcefully without exiting vb application when I click Logout button.
I tried this... doesn't work !!
-->(At server console, still session for user1 remains open !)
Private Sub logout_Click()
Set domViewEntry = Nothing
Set domViewNav = Nothing
Set domView = Nothing
Set domDocument = Nothing
Set domDatabase = Nothing
Set domSession = Nothing
End Sub
Session cloeses only when I close the application...
Can anybody tell me way to terminate session forcefully ?
Thank you.
Jay Dave