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

Search results for query: *

  1. mattm89

    Set Attachmate properties through Excel VBA

    Note: I have achieved what I wanted in a different way. Instead of setting the property through Excel VBA, I made a small Reflection Macro that I run in Reflections before running my usual screen scrapers out of Excel. Sub SpeedUp() Dim ibmCurrentTerminal As IbmTerminal Dim ibmCurrentScreen As...
  2. mattm89

    Set Attachmate properties through Excel VBA

    I have not been able to get the property set as I described above. It seems all of the old way of starting off the code with Extra objects, etc. are incompatible once you start mixing in things from the Reflections library, often resulting in "mismatch" errors. So I'm guessing everything else...
  3. mattm89

    Set Attachmate properties through Excel VBA

    I have selected all of them. However, the ExtraScreen object in the FAQ mentioned does not seem to exist in Reflections' library. If I load the EXTRA 6.5 library, the ExtraScreen object exists, but the DisableKeystrokeProductivity property is not available for it (as expected since it will just...
  4. mattm89

    Set Attachmate properties through Excel VBA

    Unfortunately, this may creep beyond my level of knowledge. From examples I have seen, I have also tried the below since myscreen has been defined in the code already: myscreen.DisableKeystrokeProductivity = True This returns the error "Object doesn't support this property or method". Further...
  5. mattm89

    Set Attachmate properties through Excel VBA

    Dim myscreen As Object Function Wait() Do Until myscreen.OIA.XStatus <> 5 Loop End Function Function System() 'Assumes an open extra session Set Sys = CreateObject("EXTRA.System") Set Sess = Sys.Sessions.Item(1) Sess.Activate Set myscreen = Sess.Screen...
  6. mattm89

    Set Attachmate properties through Excel VBA

    Hi. Based on this thread: http://support.attachmate.com/techdocs/2654.html, I am trying to set the following properties to TRUE in Attachmate through Excel VBA. I am using VBA in Excel, so I want to send the following commands to Attachmate: .DisableKeystrokeProductivity=TRUE...

Part and Inventory Search

Back
Top