Thanks, I made it work already.... Now problem is, I cannot seem to execute the Stored Procedure using a Command object (asynchronously), any idea why?

Hmmmmnnn..... Perhaps this causes the error? While asynchrounously executing the stored procedure I closed the connection.... I just thought it this time while I'm typing! (It's not the exact code but similar one....

VB Code:
  1. adoCommand.ActiveConnection=adoConnection
  2. adoCommand.Execute , , adAsynExecute
  3. adoConnection.Close

This may really be a problem since I would like to execute the back-up procedure when my app is exiting, and when my app is exiting I tend to close the connections I have and set them to nothing.... I'll try to figure this out, perhaps some experts would help me.....