Attachmate Extra and Excel VBA.
I've read the Faq and followed the code exactly.
The late binding works without problems.
(Public System as Object)
(Set System = CreateObject("Extra.System"))
As opposed to adding a reference and using the early binding:
(Public System as ExtraSystem)
(Set System = New ExtraSystem)
I would prefer to use the early binding to take advantage of the VBA intellisense prompts. However, the early binding does not work.I get a:
"Run Time Error '13' Type mismatch" message at the line:
"Set MyScn = Sess0.Screen"
I've tried several variations with the code with no luck. And I don't have the luxury of the one suggestion I did find which was to uninstall and re-install Attachmate.