Session Object

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have an application that contains a "session" object. I cannot find any documentation on this object or on its associated methods. Can someone point me in the right direction. Here is sample code in this regard

With Sessio
.WaitForEvent rcKbdEnabled, "5", "0", 1,
.TransmitTerminalKey rcIBMClearKe
.WaitForEvent rcKbdEnabled, "5", "0", 1,
.TransmitTerminalKey rcIBMClearKe
.WaitForEvent rcKbdEnabled, "5", "0", 1,
.TransmitANSI "rei1
.WaitForEvent rcKbdEnabled, "5", "0", 1,
.TransmitTerminalKey rcIBMEnterKe
.WaitForEvent rcKbdEnabled, "5", "0", 1,
.TransmitANSI loa
.WaitForEvent rcKbdEnabled, "5", "0", 1,
.TransmitTerminalKey rcIBMEnterKe
.WaitForEvent rcKbdEnabled, "5", "0", 1,
If .GetFieldText(24, 2, 3) = "ERR" The
MsgBox "You have entered an invalid number, please try again", vbCritical, "Screen Printer
GoTo To
End I
HName = .GetFieldText(2, 2, 40)
 
If the library is registered you should see it in Tools>References in your Visual Basic Environment. Finding the name of the library can be tricky, though. Include the ones you suspect might have the object in question, and then use the object browser tool in the VBE to see the objects, properties, methods, enums etc within that library

HTH

-Brad
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top