Questions tagged [ibm-pcomm]

Used in conjunction with a supported language to identify the question is specifically about programming using the IBM® Personal Communications host communication and terminal emulation package for Microsoft® Windows® (PCOMM). It should not be used without the context of another language tag.

16 questions
3
votes
2 answers

IBM PCOMM - Unable to call a vbs macro from within another vbs macro

I've made a credentials input macro using the macro recorder of IBM Personal Communications 12.0.3.0. It simply enters my username and password when called. sub Creds() Dim username Dim password username = "myUser" password =…
Marcucciboy2
  • 3,156
  • 3
  • 20
  • 38
1
vote
2 answers

Is there a way to parse text from IBM Personal Communications into Excel?

I would like to create a script in Excel to look at my IBM Personal Communications Screen or data source(preferred) and then to parse that screen text into cells. Any ideas on where to even begin? Example of Screen
ts4r
  • 21
  • 5
1
vote
2 answers

PF Keys for Host On-Demand on OS X

I'm running IBM Host On-Demand on my Mac. I haven't found a way to enter PF Keys other than through clicking on the virtual keyboard in the application. Other 3270 emulators such as Brown University tn3270 allow for command+number key for PF key…
1
vote
2 answers

IBM PCOMM Emulator, Accessing Selected Text via COM/C# interface

Bear with me as this question is a bit complex. When a user selects a block of text in the IBM Personal Communications (PCOMM) UI, how can I access attributes of the text they selected using code? Consider the screenshot below: The user has…
ScottB
  • 1,363
  • 2
  • 14
  • 24
1
vote
2 answers

autECLFieldList.count returns 1 and not the number of fields on the screen

The AutEclFieldList.Count returns a 1 instead of the number of fields on the screen. This is happening in a collegues session. In my own session i receive the number 122 which seems to be correct on the total of labels and datafields.…
AnnPr
  • 11
  • 2
1
vote
0 answers

Is there a way to get a list of all the fields in a mainframe system (IBM Pcomm) using c#?

While trying to use the autECLFieldList method in C#, "//using AutECLFieldList;", the compiler shows the error that reference is not added. Also, is there a way wherein we can use a loop to get a list of the field elements and their contents by…
Deepak
  • 21
  • 3
1
vote
1 answer

vbscript starting a specific profile connection in ibm personal communications

I have been given the task of converting the slower Macro Express Pro coding for IBM Personal Communications over to a VBScript/VBA version. The Macro Express Pro coding opens a predetermined profile from a specific location. This process can take…
Lou
  • 389
  • 3
  • 20
  • 38
0
votes
0 answers

Where to find the Java PComm HACL library

I've developped for my company multiple VB macro interacting with IBM Personnal Communication but I'd like to switch all those macro to Java for various reasons (mostly because I really hate working with VB and it is extremely slow) While searching…
0
votes
0 answers

WaitForInputReady method is not availlable in Host Access Control Library(HACL)

I have ECL-14.53.0 jar in this jar WaitForInputReady method is not available from ECLOIA class, I have WaitForInput method in my ECLOIA class, I want to know in which version of jar WaitForInputReady method is available from ECLOIA class or is both…
0
votes
0 answers

ActiveX component can't create object: 'PCOMM.autECLPS' using IBM PCOMM 14.0 HACL Automation

Trying to programmatically automate IBM PCOMM v 14.0 using Host Access Class Library Automation Objects in VBScript through Visual Studio Code IDE: Option Explicit Dim autECLPSObj Dim autECLConnList Dim autECLOIAObj Dim PSText Set autECLPSObj =…
Sai
  • 309
  • 1
  • 4
  • 15
0
votes
1 answer

Which Maven dependency to use for IBM PCOMM automation using Selenium, Java?

Can someone help me on what maven dependency to use for IBM PComm Emulator using selenium + Java for cucumber framework. any references of git or previously done any automation on this is appreciated. thank you.
Gireesh
  • 13
  • 6
0
votes
0 answers

COM library failing to register in .NET Core

I am working with some COM libraries which allow me to connect to the IBM PCOMM API. I am trying to obtain a list of connections, from an object called AutConnList(). The code looks like this: using AutConnListTypeLibrary; using…
Jakob Busk Sørensen
  • 5,599
  • 7
  • 44
  • 96
0
votes
1 answer

PCOMM Cross-Contamination

We're trying to run multiple IBM Personal Communications sessions on the same (Windows Server 2012) VM under different users, but it seems that PCOMM doesn't confine itself to the current user. If User1 tries to use Session A, then User2 fires up…
TesseractE
  • 415
  • 4
  • 13
0
votes
2 answers

Instantiated variable does not contain any value

I have a class called ClassModel. This is how it looks. class ClassModel { dynamic ConnListInstance; public ClassModel() { ConnListInstance = Activator.CreateInstance(Type.GetTypeFromProgID("PCOMM.autECLConnlist")); } …
thecodeexplorer
  • 363
  • 1
  • 6
  • 18
0
votes
1 answer

VBA detecting text color IBM PCOMM

Recently, my IBM PCOMM had been upgraded at my job to version 12.0.0.1. Ever since, if I'm trying to detect blank space, and something was already there previously, that text will show up when I use autECLPS.GetText even though all I see is black. I…
Lou
  • 389
  • 3
  • 20
  • 38
1
2