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
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