Interact with MR-Win6530 emulator using VB

  • Thread starter Thread starter NewbieMahi
  • Start date Start date
N

NewbieMahi

Guest
Hi there,

I am trying to input and extract details to/from a mainframe emulator screen (MR-Win6530) using VB. Below is the code I have used and errors faced. Please shout if you need more details.

'Please mind the coding standards. This is edited for public usage.

Dim term As Object

Dim strResult As String

term = GetObject("Path")
term.WaitTimeout = 5
term.TopMost = True 'This is where the issue occured.
term.SetScreen(16,15,8,'Testing') '(intX, intY, intLEN, strTEXT)

strResult = term.GetScreen(14,2,8) '(intX, intY, intLEN)

Error: Public member 'TopMost' on type 'ITerminalProfile' not found.

Could anyone help on this? Any sort of help is much appreciated. Thanks for your attention.

Cheers - Newbie

Continue reading...
 
Back
Top