I am a barely proficient VBA programmer that had learned to write VBA code to import Excel data into Attachmate Extra.
Our company has moved to using Reflection for the Web 2011, which has Java based macros.
I'm trying to update my program to import the Excel data into the new Reflection for the Web 2011, but can't seem to find the Object name.
Below is the code I have used for Attachmate Extra
Dim sessions As Object
Dim System As Object
Dim MyScreen As Object
Dim Session_Name As String
Set System = CreateObject("EXTRA.System")
Set sessions = System.sessions.Open(“xxxxxx”)
sessions.Visible = True
Set MyScreen = sessions.Screen
Our system uses a web link to open the Reflection session, so I'd need to change to GetObject, but beyond that I'm lost.
I've searched Attachmate, and maybe just my poor understanding of programming, I'm not able to find what the "Set System = " portion should be.
I have found a number of people asking the same question, but no solution... or no VBA that doesn't return an error when I replace in my code.
Any help is greatly appreciated.
JR
Our company has moved to using Reflection for the Web 2011, which has Java based macros.
I'm trying to update my program to import the Excel data into the new Reflection for the Web 2011, but can't seem to find the Object name.
Below is the code I have used for Attachmate Extra
Dim sessions As Object
Dim System As Object
Dim MyScreen As Object
Dim Session_Name As String
Set System = CreateObject("EXTRA.System")
Set sessions = System.sessions.Open(“xxxxxx”)
sessions.Visible = True
Set MyScreen = sessions.Screen
Our system uses a web link to open the Reflection session, so I'd need to change to GetObject, but beyond that I'm lost.
I've searched Attachmate, and maybe just my poor understanding of programming, I'm not able to find what the "Set System = " portion should be.
I have found a number of people asking the same question, but no solution... or no VBA that doesn't return an error when I replace in my code.
Any help is greatly appreciated.
JR