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

    Multiple Variable PutString from Excel to Attachmate

    why dont you use some arrays to store your data
  2. CompuDork

    Embed Extra in .NET form

    Nope.... I have PCOMM and Attachmate at work, and the only emulator that allows this is PCOMM, using Java Beans
  3. CompuDork

    18 Recs from Excel, to Attachmate enter, back to Excel next 18 etc

    I think the question that we are having is why are you trying to overwrite the data that you are placing at row 5, column 18? You are putting a string there, with one row of data from the Excel sheet, and the next time the loop goes thru, you are overwriting with the data in the next row on...
  4. CompuDork

    HostSettleTime

    thanks for the input. I wasnt aware of the Sess0.Screen.OIA.XStatus property. I write alot of macros based on both attachmate and pcomm and never looked into that property.
  5. CompuDork

    Delay before Macro runs

    The only thing I can think of is trying to write a macro from the machine that is dragging to troubleshoot from there. Then create a check to see if one session is running or the other, then having the macro that works with the dog run with that session, and the macro that works run from the...
  6. CompuDork

    How to get logged on userid

    Just bear in mind that the variable, UserName = Environ("USERNAME"), is the Windows Network logon id. If the user id for the Mainframe App is different, then that variable wont work.
  7. CompuDork

    Sending Email via Outlook

    It works in Extra! 7.11
  8. CompuDork

    HostSettleTime

    I use wait state alot. If you are going to move a cursor and put a string somewhere, you wont need it. But if you are running a mainframe application that if you send keys to fast it hangs, like Fidelity, then you are better off including them. When I use them I cut the time from the default...
  9. CompuDork

    Extra Basic $Include Question

    Are you creating a stand alone app? You may be better off passing a reference to the Extra.object and calling macros that way.
  10. CompuDork

    Macro failed to begin execution

    PS you will get an error message if you run another macro before the previous one is finished in Attachmate.
  11. CompuDork

    Macro failed to begin execution

    Yeah. The reason why they are not running from the toolbar is often the toolbar editor will associate macros to the default path. What you have to do is open the toolbar in the toolbar editor, click the button you want to associate the macro to, click object, click macro, click browse and...
  12. CompuDork

    Scraping text and Exporting to text file

    I think it is because of the Trim statement. it basically edits the text string before outputting into your text file... I would try this as a simple fix to make the first line of each screen a blank line in your text file.. So your code looks Like this : Open outfile For Append As #1 Print...
  13. CompuDork

    Scraping text and Exporting to text file

    One thing that will help you right off the bat is changing your output statement. Currently, you have: Open outfile For Output As #1 Change to: Open outfile For Append As #1 Output means to replace all the stuff in the text file with new stuff. Append means add to the bottom of the text...
  14. CompuDork

    Scraping text and Exporting to text file

    I was using set instead of getstring... But WinBlows answered another part of my question. Thanks for the help.
  15. CompuDork

    Reading Acct/SSNs from a Text/Excel file in an Attachmate Loop

    You can always write code to read from a text file and enter into extra... Use the open file.txt for input as #1 and loop
  16. CompuDork

    How to run a Maco at a time

    There is no macro command that will fire at a certain time. You're better off writing a small vb app and have it run in the background, and at a certain time fire off the macro.
  17. CompuDork

    Scraping text and Exporting to text file

    I got a question. I have a macro that scrapes data from one screen, switches to another screen, and then exports to a text file. I use the GetString command to scrape the data from one screen, but when I switch screens, it seems to act like the macro is passing a reference instead of copying...

Part and Inventory Search

Back
Top