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 SkipVought 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. vzachin

    Select text

    i'm sorry if you felt i was rude. you can hire a professional to help you then.
  2. vzachin

    Select text

    i guess you didn't look at the help file as Skip suggested.
  3. vzachin

    Select text

    you would need to get the coordinates of the found string, where it begins and where it ends. how are you performing the search?
  4. vzachin

    7.1a macro to select text?

    check out copyappend method Dim Sys As Object, Sess As Object Set Sys = CreateObject("EXTRA.System") Set Sess = Sys.ActiveSession Set Sess = Sess.Screen Sess.area(2, 18, 2, 23).Select Sess.CopyAppend Sess.area(3, 19, 3, 43).Select Sess.CopyAppend...
  5. vzachin

    7.1a macro to select text?

    this should work Sub Main() Dim Sys As Object, Sess As Object Set Sys = CreateObject("EXTRA.System") Set Sess = Sys.ActiveSession Set Sess = Sess.Screen sess.Area(3, 19, 3, 43).select sess.Area(3, 19, 3, 43).copy End Sub
  6. vzachin

    7.1a macro to select text?

    this is from the help file for 7.1 This example first copies the entire session screen to the Clipboard, then copies an area of the screen to the Clipboard. Sub Main() Dim Sys As Object, Sess As Object, MyScreen As Object, MyArea As Object ' Invoke the clipboard viewer Shell("clipbrd.exe")...
  7. vzachin

    7.1a macro to select text?

    works for me. post your code, please
  8. vzachin

    7.1a macro to select text?

    Sess0.Screen.Select(3, 19, 3, 43).copy from the help file
  9. vzachin

    Select text

    found = sess0.screen.select(9,15,9,20) from the help screen
  10. vzachin

    SendKeys ("<Enter>") doesnt work straight away

    after evoking the sendkeys, the cursor moves to the end of the string whereas evoking putstring the cursor remains where it was. if your cursor is not in a field that can contain data, the sendkeys will not work; you should receive an error of some sort whereas the putstring will actually place...
  11. vzachin

    SendKeys ("<Enter>") doesnt work straight away

    did you check HELP on putstring
  12. vzachin

    Excel VBA copying historic data from Attachmate session

    mazzaB, moving the cursor to another position ensures that after a successful find transaction, the cursor is moved back to where you would expect it.
  13. vzachin

    Excel VBA copying historic data from Attachmate session

    MazzaB, WaitHostQuiet works for me in Excel VBA. i don't see the WaitHostQuiet in your code though. how about adding this? Do While Sess.OIA.XStatus <> 0 Loop You are trying to capture 50 rows of data from Attachmate? i can't change my attachmate screen to show more than 24 rows...
  14. vzachin

    Excel VBA copying historic data from Attachmate session

    MazzaB, are you saying that an Attachmate Macro will work vs an Excel Macro? you said are you saying that your cursor is always on row 1, col 23 or col 24? and the "new" data begins in row 25? result = Sess0.Screen.GetString(Row, 1, 50) will begin on row 1 and not row 25. did you try skip's...
  15. vzachin

    Excel VBA copying historic data from Attachmate session

    MazzaB, just a guess, maybe your macro is running faster than the screen refreshes with data? did you try stepping through the code? za
  16. vzachin

    How do I send &quot;string&quot;

    the answer is in part of your code Sess0.Screen.SendKeys ("<HOME>mtcc<enter>") use Sendkeys Sess0.Screen.SendKeys ("anm") otherwise, you may use Putstring. See Help file for more information. Use Putstring instead of tabbing to the field to enter your information hth za
  17. vzachin

    Search for more instances of a string

    dvirgint, what Skip has been trying to point out is that your search string does not specify where to search from: Set MyArea = MyScreen.Search("HELLO",r,c) Set rad_find = MyScreen.Search("Radiation par") also, there's no need for this: Loop Until Row = 23 all you need to do is test for where...
  18. vzachin

    Search for more instances of a string

    dvirgint, without seeing your code, i'm not sure what it's doing. after finding the first string, where did you place the cursor? i'm thinking if your found string is at the end of the row, this may fail. when you copied my code into a module, did you try it out with the search for "HELLO"...
  19. vzachin

    Search for more instances of a string

    dvirgint, if a search is successful, the row/col coordinates are changed, otherwise it goes to 1,1 include the row, col within the search string
  20. vzachin

    Search for more instances of a string

    see if this helps you understand Sub Main Dim Sys As Object, Sess As Object, MyScreen As Object, MyArea As Object Set Sys = CreateObject("EXTRA.System") Set Sess = Sys.ActiveSession Set MyScreen = Sess.Screen r = 1 c = 1 Do Set MyArea =...

Part and Inventory Search

Back
Top