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. sentinel11011

    Infinite WaitFor

    Oh man, do I feel stupid: Is WaitFor not a standard VBA function?
  2. sentinel11011

    Infinite WaitFor

    http://www.asent.com/downloads/at2k2pg53.pdf
  3. sentinel11011

    Infinite WaitFor

    The script is saved as an external file, and just run at startup of the Acuterm program. There is no local login object, as all of this is stored on the server. Pretty much it is a telnet session, and the acuterm program is smart enough to watch what is being returned to the screen (in...
  4. sentinel11011

    Infinite WaitFor

    This seems like it should be a rather easy script. Here is what I have that works, but uses too many CPU cycles: Sub Main() Dim user As String user = "BLAH BLAH" Dim pass As String pass = "BLAH BLAH BLAH" 'THIS IS FOR THE INITIAL LOGIN, AND WORKS GREAT ActiveSession.WriteText user...
  5. sentinel11011

    Infinite WaitFor

    Sorry, It is using Acuterm, which is just a telnet terminal emulator that allows VBA scripts. There is a login prompt programmed into the server that asks for "login:" and "password" The first "login:" and "password:" is the same for everyone in the company, and is used on the sales floor to...
  6. sentinel11011

    Infinite WaitFor

    I need to do an infinite WaitFor for a script I'm writing. The problem is that putting it in a loop and waiting until the function returns 1 eats tons of CPU cycles. Is there a way to do an infinite WaitFor? For example session.WaitFor(0, [something infinite here], "login:") I tried just a...

Part and Inventory Search

Back
Top