Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Rhinorhino on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

DTS Progress

Status
Not open for further replies.

3615

Programmer
Joined
Jun 22, 2001
Messages
22
Location
FR
I'm using a VB6 program to execute a DTS Package (SQL7)

this is my code

Private WithEvents mobjPackage As DTS.Package
Set mobjPackage = New DTS.Package

private MySub()
mobjPackage.LoadFromStorageFile "C:\...\MySql.dts", ""
mobjPackage.Execute
end sub()

I can execute the DtsPackage but my problem is
that the Event mobjPackage_OnProgress(... ...) it is not fired !!!

Does anyone knows why ?

Thanks
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top