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

  • Users: rgm33
  • Order by date
  1. rgm33

    Refreshing Terminal Control

    Just to confirm... You are using a VT session and not a 3270 or 5250?
  2. rgm33

    Attachmate msg box not working In VB code

    A message box written in Extra! Basic will not work in VBA. You'll need to rewrite your code. This example is straight from the VBA help, it should get you started: MsgBox Function Example This example uses the MsgBox function to display a critical-error message in a dialog box with Yes and...
  3. rgm33

    Reflection 2011 alternative to xstatus in EXTRACOM

    Hello, I'm using Reflection 2008. My Documentation says: "Reflection 2008 doesn't support EXTRA! macros and COM applications that contain certain methods and properties from the classes listed in this section." It goes on to list the ExtraOIA class, and says XStatus has no operation. I...
  4. rgm33

    SendKeys <Esc> & <F1> not working VB6

    Did you try recording a macro of key presses to find the key codes? Also, don't know about KEA but on my system the "F" keys are prefixed with a "P" SendKeys ("<PF8>") and "Return" is SendKeys ("<Enter>")
  5. rgm33

    reflections 2011 excel

    This might help you. I don't know about using Reflection objects but this is what got my old scripts working under Reflection. My old Extra! scripts were set up like this: Public System As ExtraSystem Public Sessions As ExtraSessions Public Sess0 As ExtraSession Public MyScn As ExtraScreen...
  6. rgm33

    during the code digit....

    You need to turn on "Auto List Members" From within the VB IDE, go to Tools > Options > Editor and check the "Auto List Members"
  7. rgm33

    Excel VBA: Moving from Extra! to Reflection 2008

    I found the solution under: http://support.attachmate.com/techdocs/2209.html Set a reference to EXTRACOM and remove the reference from the old Attachmate Library. In my case it was ATTACHMATE EXTRA! 7.1 Object Library. It should show as MISSING in the reference list. Very important to remove...
  8. rgm33

    Excel VBA: Moving from Extra! to Reflection 2008

    Hi, Could somebody provide the equivalent code to establish a connection from Excel to Reflection 2008. Public System As ExtraSystem Public Sessions As ExtraSessions Public Sess0 As ExtraSession Public MyScn As ExtraScreen Set System = New ExtraSystem Set Sessions = System.Sessions Set Sess0...
  9. rgm33

    Escaping quotation marks in SendKeys

    Thanks, that did the trick.
  10. rgm33

    Escaping quotation marks in SendKeys

    Hello, I am trying to send quotation marks in a sendkeys(). The help files say to use curly brackets {} but I get an error. I need to send the following command: change "foo" "bar" all According to help file I think I should be able to do this: SendKeys("change {"}foo{"} {"}bar{"}...

Part and Inventory Search

Back
Top