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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

DTS ==> Using Visual Basic help

Status
Not open for further replies.

deva1

Programmer
Oct 28, 2002
27
US
Gurus,
I am trying to write some DTS(Data transmission)applications in Visual Basic 6.0.I included Microsoft DTS Custom tasks package library in the project References.Is there anyway I can get the properties and methods for the package.Now what I am doing is I am typing everything.example
Option Explicit
Public goPackageOld As New DTS.Package
Public goPackage As DTS.Package2
Private Sub Main()
set goPackage = goPackageOld

goPackage.Name = "Daily Agent Master"
goPackage.Description = "Load Agent Master"

....

What I am asking is if I type gopackage., can I see the list of properties and methods associated with that.




Any help is appreciated


 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top