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!

Search results for query: *

  1. VictorRavagnani

    Extra 6.5 freezes/white screen while VBA connection

    Hi SkipVought, thanks for replying I'm aware of that from an 2015 post here in tek tips. But the issue still remains, even with the doevents waiting for the system to answer. Excel keep's informing OLE issues.
  2. VictorRavagnani

    Extra 6.5 freezes/white screen while VBA connection

    Shure, there you go Dim System As Object: Set System = CreateObject("EXTRA.System") Dim Sessions As Object: Set Sessions = System.Sessions Dim Sess0 As Object: Set Sess0 = System.ActiveSession Dim Screen As Object: Set Screen = Sess0.Screen Dim OldSystemTimeout As Integer...
  3. VictorRavagnani

    Extra 6.5 freezes/white screen while VBA connection

    Hello everyone Before the update for Office 2013, my macros in vba connectiong with Extra! Client 6.5 was working better than ever. After this update (or something else that i'm not aware), the same macros doesn't. Eveything was checked: - reference in VBA - object creation and assingments...
  4. VictorRavagnani

    sendkeys btw. excel to extra 6.5 object_in a password field

    YLearnd something new with that...thanks again SkipVought!
  5. VictorRavagnani

    Reduce error in screen copy due common asynchronous host connection using WaitHostQuiet(0) or other

    Tks SkipVought...it worked really well and fast as possible without copy errors. Was wondering if it's possible to measure the system waiting time and send it to a var/string did: sess0.moveto 24,80 sess0.WaitHostQuiet(0) do until sess0.waitforcursor(1,30) do events loop
  6. VictorRavagnani

    Reduce error in screen copy due common asynchronous host connection using WaitHostQuiet(0) or other

    Hey remy988, thank you for the informed thread. Seems to work fine. If you use this method, do you change the position of the cursor during the screen transactions? i.e.: ... sess0.moveto 24,80 do until sess0.waitforcursor(1,30) do events loop ...
  7. VictorRavagnani

    Reduce error in screen copy due common asynchronous host connection using WaitHostQuiet(0) or other

    Good day, I'm trying to copy data from the screen (with Attachmate Extra 6.5) from a Session as fast as possible to avoid Server capacity overload using the following: Myscreen.SendKeys ("<Enter>") Myscreen.WaitHostQuiet (0) 'used as time marker to xServerBusy Myscreen.WaitForCursor 1, 30...
  8. VictorRavagnani

    Locked terminal (TN3270 in Extra 6.5) due time out

    Hello Gentleman, Is it possible to insert a Function that checks if a terminal is locked (either by time out or other reasons) via OIA?
  9. VictorRavagnani

    sendkeys btw. excel to extra 6.5 object_in a password field

    Here a better explanation: Dim pass as string:pass = InputBox("Mainframe Pass") .PutString (pass), 12, 60 .SendKeys ("<Enter>") .WaitHostQuiet (0) Keep in mind that the registered password would be "PassWord!02". The event inputbox occurs into the excel vba code and the user insert...
  10. VictorRavagnani

    sendkeys btw. excel to extra 6.5 object_in a password field

    Hello Gentleman, could use some help... When I acquired a password (string) from an inputbox in excel vba, suddenly faced an unusual situation: for a password field in extra 6.5!, sendkeys and/or putstring turns the text into case Insensitive. DO you faced anything like it? thank you and...

Part and Inventory Search

Back
Top