function keys html activex - WeOnlyDo Discussion board

function keys html activex (General questions)

by scott hosier, Tuesday, June 20, 2006, 21:55 (6730 days ago)

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

by wodDrazen, Tuesday, June 20, 2006, 22:19 (6730 days ago) @ scott hosier

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

by scott hosier, Tuesday, June 20, 2006, 22:39 (6730 days ago) @ wodDrazen

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

by wodDrazen, Tuesday, June 20, 2006, 23:12 (6730 days ago) @ scott hosier

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