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...
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...
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>")
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...
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...
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...
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{"}...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.