I came across 2 files that are inculded with EXTRA installation:
ExtraEvents.ocx
ExtraLauncher.ocx
after adding a reference this 2 files are also added
EXTRAEVENTSLib.dll
EXTRALAUNCHERLib.dll
It looks like ExtraLauncher is a host control for EXTRA and can be placed on the .Net form...
You arecreating second session in
Public Sub CheckMultipleSessions()
by this statemant
exSystem = New EXTRA.ExtraSystem
even that you set exSystem to nothing , the process still runs.
remove thos lines from Public Sub CheckMultipleSessions()
and it should work
exSystem = Nothing...
Try this
Private Function FindEmptyRow() As Integer
Dim intEmptyRow As Integer
Dim strRowAddress As String
Dim objRow As Object
Dim objExcel As object
Dim objSheet As Object
objExcel = GetObject(, "Excel.Application")
objSheet =...
Dim objExtra As New EXTRA.ExtraSystem
Dim strFileTo As String
Dim strFileFrom As String
objExtra.ActiveSession.FileTransferScheme = "Text Default"
objExtra.ActiveSession.FileTransferHostOS = 0
objExtra.ActiveSession.ReceiveFilE(strFileTo, strFileFrom, 0)
0 is with transfer prompt
1 without.
Hi
I'm trying to automate printing, can anyone give me an idea for macro that will print the Extra screen and Extra info in excel spr sheet? So far I'm using:
AppActivate "MS excel - test"
sendkeys "^p",1 ' control + p
sendkeys {Enter},1
any ideas would be...
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.