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 dencom 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: *

  • Users: jonesy1
  • Content: Threads
  • Order by date
  1. jonesy1

    Call a Macro from a Macro

    Sometimes my macros are too long. Is there a way I can call a macro from a macro? Or is there a way I can run a macro without running into errors because it's too long?
  2. jonesy1

    Screenbuf clearing Not Working

    I've been using the following forever and now suddenly it's not working. It writes to the the text file but then clears out the text file upon the Screenbuf$ ="" command. I'm not sure why this suddenly isn't working anymore. Screenbuf$ = "" linebuf$ = Space$ (Maxcolumns%) Looks...
  3. jonesy1

    Only Part of Screen is Copied

    I'm using For row% = 1 to MaxRows% linebuf$ = Session.Screen.Area(row%, 1, row%, MaxColumns%, , xBlock) screenbuf$ = screenbuf$ + linebuf$ + Chr$ (13) + Chr$ (10) Next.... to capture screen prints, but for some strange reason only 3/4 of the screen is captured. I don't...
  4. jonesy1

    Need to scrape text from Extra (Object) and compare it to a string

    Hello World! I need to compare what's in 'Set MyArea = MyScreen.Area(6, 43, 6, 52)' to 'paper copy' a string. I can't seem to figure out as MyArea is an Object and 'paper copy' is a string. HELP!!! Please. I just want to do a simple compare of a value I scrape off an Extra screen to a...
  5. jonesy1

    how do I default screen scrapes to a file instead of the clipboard

    ' Global variable declarations Global g_HostSettleTime% Global g_szPassword$ Sub Main() '-------------------------------------------------------------------------------- ' Get the main system object Dim Sessions As Object Dim System As Object Set System = CreateObject("EXTRA.System") ' Gets...

Part and Inventory Search

Back
Top