function keys html activex (General questions)
Testing the telnetdlx html activex. The unix application I am accessing relies on the user pressing the function keys for various things, i.e. f1 to return to previous menu. Do you have any suggetions for handling this.
Re: function keys html activex
Hi Scott,
I found on this page that you need to send for F1 ESC + OP:
http://support.dell.com/support/edocs/systems/pe2650/en/ug/5g387ad0.htm
So here is example how:
telnetdlx1.Send (Chr(27) + OP )
or
telnetdlx1.Send (Chr$(27) + OP )
Hope this helps.
Regards,
Drazen
Re: function keys html activex
The ESC + OP works fine however I am not sure where to add the
telnetdlx1.Send (Chr$(27) + OP )
that you suggest.
Thanks for your support.
Scott
Re: function keys html activex
Hi Scott,
I'm not quite sure how you plan to build your application.
You can for example add button for function key F1 and under that button paste code that I send you.
Regards,
Drazen