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

extra in excel

Status
Not open for further replies.

mp3er3000

Programmer
Feb 19, 2005
17
US
lets say i set system as
Set system = CreateObject("EXTRA.System")
how would i declare system so everytime i type
system. it will give me a list of all of the methods or properties that that associated with system.
i tried dim system as attachmate.extra and that did not work. thanks in advance!
Kevin
 
Assuming your working in VB or VBA (in EB it's not possible):

Add a reference.
Tools>References
select Attachmate object

Then in code:
Dim System As ExtraSystem

I actually use these:
Public System As ExtraSystem
Public Sessions As ExtraSessions
Public Sess0 As ExtraSession
Public MyScn As ExtraScreen

Then I can refer to MyScn.... and have a drop down of properties and methods.

calculus
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top