I am trying to communicate with my IBM3270 session via Powerbuilder. I have been able to use the TransmitTerminalKey() and TransmitANSI() functions within the application. I got the numeric values of the Enter and Clear key from various web postings. I have not seen anyone passing the PF2 key. I tried the reflection constant but it does not appear to work within powerbuilder.
Does anyone know the numeric representation of the constant enumeration rcIbmPf2Key? Is there somewhere that lists these values?
Any assistance is appreciated.
// lole_session.SendKeys("<Pf2>")
Fails -->lole_session.TransmitTerminalKey("rcIbmPf2Key")
works -->lole_session.TransmitTerminalKey(289) // Enter
works -->lole_session.TransmitTerminalKey(277) // Clear
Does anyone know the numeric representation of the constant enumeration rcIbmPf2Key? Is there somewhere that lists these values?
Any assistance is appreciated.
// lole_session.SendKeys("<Pf2>")
Fails -->lole_session.TransmitTerminalKey("rcIbmPf2Key")
works -->lole_session.TransmitTerminalKey(289) // Enter
works -->lole_session.TransmitTerminalKey(277) // Clear