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 Mike Lewis 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: southpaw81
  • Order by date
  1. southpaw81

    The death of me! Excel and Extra - next row till finished issue

    I am actually programming in the macros inside EXTRA. Could I bother you to possibly show me how that would work in the code? I have never see some of those statements. For X = 2 to Cells.SpecialCells(xlCellTypeLastCell).Row Maybe if its easier breaking down what each part of that line...
  2. southpaw81

    The death of me! Excel and Extra - next row till finished issue

    This is my second post today, I am on a roll. This program I am coding is just massive, and I dont know if I just lost my nerve or skill or both. I need to tell Extra - that if you see an X in row 3 col 1 on my spreadsheet, then do this. Then search for an X in row 4 col 1 and repeat until...
  3. southpaw81

    Loop this command

    I am trying to write a loop or repeat commands for the code below. Basically I need it to loop or repeat until: ( 11, 24, 11, 25, , xBlock) = " " or in english it = blank The regular code looks like this: If Sess1.Screen.Area( 11, 24, 11, 25, , xBlock) = "00" then result =...
  4. southpaw81

    How do I send a file inside attachmate session

    Ok, your suggestion of recording the macro was brilliant. My only confussion now is getting the file to send or transfer to the active session. When I pull up the transfer file box it asks for: Transfer File list name: Path/Direction/Host/Scheme/ Filename Host etc... I dont know how to fill...
  5. southpaw81

    How do I send a file inside attachmate session

    '*********************************************************** ' ' Date: Thursday, February 27, 2003 17:19:10 ' DO NOT MODIFY THIS FILE ' '*********************************************************** Sub Main() Dim Sys As Object, Sess As Object Set Sys = CreateObject("OESOTS.ebm") Set...
  6. southpaw81

    How do I send a file inside attachmate session

    Thanks for your help, a little delayed in my response =) I am back working on this project again, (big sigh) and I have still not figured out this mystery. Basically, they key orders into a TELNET session we call OESOTS. At a certain point in the order process we "SEND FILE" and it prompts me...
  7. southpaw81

    Endless looping

    Here is the fix for the problem: ---------------------------------- The following changes (*** marks lines with changes) *** h1Found = 0 hiEnd = FALSE While hiEnd = FALSE *** For hiCount = 8 to 19 acType = Sess0.Screen.Area(hiCount, 15, hiCount, 16, , xBlock)...
  8. southpaw81

    Endless looping

    I could really use some help on this if anyone can assist. Basically the problem is, it doesnt find the (V1, L1, etc) it just keeps hitting enter Select Case acctType Case "H1" Sess0.Screen.Row = 22 Sess0.Screen.Col = 18 Sess0.Screen.Sendkeys("HIER<Enter>")...
  9. southpaw81

    Endless looping

    Those not wanting to read through all the code, I believe the problem is in this section: ********************************************* ' Global Subroutine Declarations Declare Sub GetSystem Declare Sub AddToMacroLog ' Global variable declarations Global g_HostSettleTime% Global Session As...
  10. southpaw81

    Endless looping

    Ok, I am so close to finishing this code. Currently I am telling the macro to search through my entire hier, if you see something in row 15,16 columns 8-19 of my session that matches V1, L1, etc, then put an M by it and continue with the code. The problem is the macro keeps skipping past the...
  11. southpaw81

    small coding issue..else if statement

    Your a genius! It worked great! Thanks for your time, Ryan
  12. southpaw81

    small coding issue..else if statement

    The code below is used to grab information off customer accounts in our attachmate sessions. I am trying to figure out the correct code to put in the marked section below, that will tell the macro, if you dont see (V1, L1, etc) then hit enter to go to the next page, and repeat your search, do...
  13. southpaw81

    Dreamweaver PHP MYSQL - Cant preview page?

    I just wanted to give everyone an update. I contact my webhost godaddy.com (which im wondering if they are a good company or not at this point, anyone have any longterm experience with them?) Anyhow they stated that there server for PHP is running in safe mode and apparently has been for...
  14. southpaw81

    Dreamweaver PHP MYSQL - Cant preview page?

    Thank you for being such a valueable resource - ahead of time. I have finally got my connection from Dreamweaver to MYSQL through godaddy.com to work. All of my database connections are successful when I use the test option in Dreamweaver. My issue is when I go through the insert, application...
  15. southpaw81

    Grabbing information from IE and pasting it into the host

    Thank you ahead of time for your support. Can someone give me a sample of code that would grab information from an open internet explorer screen and paste it into a ATTACHMATE session? Thank again for your help!
  16. southpaw81

    How do I send a file inside attachmate session

    First thank you for your time. I am attempting to send a .txt file into a session extra client screen. When I copy paste the .txt lines (approx 50) into the session it only pastes one line at a time. I need it to paste all of the information like a text box. CMD? How can i set this up? Note...

Part and Inventory Search

Back
Top