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

    Hardwire LAN through wireless router won't connect

    The problem turned out to be that the Auto Negotiate speed did not auto-negotiate. I was able set the speed of the LAN adapter down to 10 MPS and it started working. There's also been an update to the router that allowed it to auto-negotiate properly. calculus
  2. calculus

    Hardwire LAN through wireless router won't connect

    The problem turned out to be that the Auto Negotiate speed did not auto-negotiate. I was able set the speed of the LAN adapter down to 10 MPS and it started working. There's also been an update to the router that allowed it to auto-negotiate properly. calculus
  3. calculus

    Issue with SendMessage and EXTRA! 6.4 in VB.net

    Sess0 = Sessions.ActiveSession is the easiest way to get the session the user is using. calculus
  4. calculus

    Issue with SendMessage and EXTRA! 6.4 in VB.net

    Maybe I don't understand completely, but it appears that you're going about this the hard way. Check out this FAQ on how to pilot Extra using VB(A). faq99-4069 Basically, you create an object that controls Extra. Then you can just send your string to anywhere in Extra that you need. calculus
  5. calculus

    Explode and Count

    This will count the number of commas in a string. MyString = "1,2,3,4" StartPosition = 1 MyCount = 0 Do While Instr(StartPosition, MyString, ",") > 0 StartPosition = Instr(StartPosition, MyString, ",")+1 MyCount = MyCount + 1 Loop If you use VB(A), you can use the Split function...
  6. calculus

    Connection to database

    Actually, this FAQ sends data to Excel as if Excel were a DB. The sheets are seen as tables. faq99-4068 With Skie's advise above and this FAQ you should be able to get there pretty quickly. calculus
  7. calculus

    Macros containing screen objects stopped working

    Try: Set Screen = Session.ActiveSession Currently you aren't telling Extra which Session to choose. calculus
  8. calculus

    Early vs late binding and macro problems in VBA

    Have you stepped through it? Where does it blow up? calculus
  9. calculus

    Early vs late binding and macro problems in VBA

    That's curious. I was shifting to early binding because of the ease of programming with drop down menus. However, I'm currently supporting 5 different versions of Extra, so early binding no longer works. So now, I write code using early binding, then remove the references and use late binding...
  10. calculus

    Hardwire LAN through wireless router won't connect

    I know this is strange... I had to replace my MB/processor. I thought it wise to format the HD at the same time. So I had a clean install of XP SP2 with no firewall and no anti-virus on it. When I connect directly to my cable modem through the LAN I can connect to the internet. This shows that...
  11. calculus

    Hardwire LAN through wireless router won't connect

    I know this is strange... I had to replace my MB/processor. I thought it wise to format the HD at the same time. So I had a clean install of XP SP2 with no firewall and no anti-virus on it. When I connect directly to my cable modem through the LAN I can connect to the internet. This shows...
  12. calculus

    ReceiveFile method dies

    I'm having a similar issue that I've been unable to resolve. My issue seems to be on a specific users computer. All other users don't have any problem running the code. Additionally, if I step through the code on the culprit computer it works fine. I wrote this off as one of the quirks of...
  13. calculus

    Screen displays incorrectly with coded vs manual inputting

    You may want to check out the FAQ sections. Calculus
  14. calculus

    Using VBA to write scripts.

    Here's some old code I used to use called "VBA Extra Base". Sub SetSub() 'Extra Objects Set System = New ExtraSystem: If (System Is Nothing) Then Exit Sub Set Sessions = System.Sessions: If (Sessions Is Nothing) Then Exit Sub Set Sess0 = System.ActiveSession: If (Sess0 Is Nothing)...
  15. calculus

    attachmate and tsys (total systems)

    An edited macro will create objects to communicate with Extra. calculus
  16. calculus

    Attachmate Extra Word Search (Multiple occurance)

    When I use nested loops I will use a label to exit. So... do do do If X meets my criteria then goto ExitMyLoop: loop loop loop ExitMyLoop: calculus
  17. calculus

    Attachmate Extra Word Search (Multiple occurance)

    The Search function has 2 optional components. After you give it the search string you can give it a starting Row and Col. So to find the next occurrence you would add: Set SC = Sess0.Screen.Search("C-", MyArea,Top, MyArea.Left+1) This would start the search at the character to the left of the...
  18. calculus

    Extra P.C. 6.7 - Keyboard map to run macro types name

    Yes, that was what brought me to this board. As it turns out, many versions of Extra simply don't support keyboard mapping. The only way to get past this is to use the toolbar with accelerator keys. I also use Windows shortcut keys to point to some VB programs. I would think you could also...
  19. calculus

    How do I find the Total Sum

    You by using the "Val" function you are capturing it as a number instead of text. calculus
  20. calculus

    How do I find the Total Sum

    Use the Value function instead. Units = Units + Val(Sess0.Screen.GetString(3, 12, 4)) Depending on how you're working with Units you may need to also use the "val" function on it. calculus

Part and Inventory Search

Back
Top