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

    sendkeys problem

    What kind of data are you trying to capture? Do you want to save the data or just use it within your program?
  2. PurpleGecko

    Can an Array be passed to and from a Function?

    See if these functions will work for you! :) Declare Function RemoveLineArray(strArray() As String,LineRemove As Integer) Declare Function AddLineArray(strArray() As String) Sub Main Dim i As Integer Dim strArray1() As String ReDim strArray1(10) As String For i = 0 to 10 strArray1(i) =...
  3. PurpleGecko

    myExtra! Presentation Services

    I would try www.attachmate.com
  4. PurpleGecko

    Wait for help

    What is the best way to set XXXXX to accomplish this?
  5. PurpleGecko

    Stopping Macro from code

    What about something like this in your code, assumiung that the program is in an endless loop StopMacro = MyScreen.WaitForKeys(5000, "S") If StopMacro = "S" then Stop Now you should be able to just press the S key to stop the Macro from running any longer
  6. PurpleGecko

    Probem with SendKeys function

    Try using SendKeys ("<PrintRange>")
  7. PurpleGecko

    Attachmate MyExtra Print Screen

    I use this command to do a screen print 'Need the pause command in order to use this pause 1 MySess.sendkeys ("<printrange>")
  8. PurpleGecko

    Wait for help

    Is there a way to wait for more then one possible text string coming across the screen and not have it time out when only one of the strings come across and not the others? Example MySess.waitforstring ("TEST:"),("TERM") Waiting for either TEST or TERM

Part and Inventory Search

Back
Top