ICE

TCP/IP Products => TCP-PRO => Topic started by: poconomts on September 28, 2006, 03:15:57 pm

Title: tcp/ip pro function keys
Post by: poconomts on September 28, 2006, 03:15:57 pm
 :( I am trying to use wyse60 as my emulation and not all of the function keys are working.  It seems only f1 & f10 work.  Not sure why.  Any suggestions?  This is during a telnet pro session.
Title: tcp/ip pro function keys
Post by: Bob on September 28, 2006, 04:26:06 pm
Make sure it's set to 24 lines. Nearly all Unix implementations only contain 24 line wyse60 definitions. If you have an app that requires 25 lines it will normally send an escape sequence to enable the 25 line mode if it needs it.
Title: tcp/ip pro function keys
Post by: poconomts on September 29, 2006, 08:24:41 am
Thanks, but I do have it set to Wyse60 24 lines.  With the 25 lines, garbage was displayed when I tried to use the app, so I knew that would not work. I also forgot to mention, that I am running xp home sp 2 and using telnet pro v.5.1.26. :(
Title: tcp/ip pro function keys
Post by: Bob on September 29, 2006, 10:20:56 am
Weird, maybe your PC is doing something odd with the function keys.

Two suggestions

1) Try the classic version (4.4) and see if the behavior is the same or not.

2) Try version 5.1.19 and see if it works. Follow the instructions in this message at the bottom for installing it:
http://yabb.jriver.com/ice/index.php?board=2;action=display;threadid=725

Let us know what happens please.
Title: Re:tcp/ip pro function keys
Post by: newbie1 on October 06, 2006, 04:27:56 am
have you tried wyse60-25 as TERM setting in your unix box?
then choose the 25 line mode
Title: tcp/ip pro function keys
Post by: newbie1 on October 29, 2006, 08:49:29 pm
Hi,

I just encountered some tips from an OLD friend who is much familiar with mainframes.
If you are using unix, you can normally diplay the current terminal configuration settings for your unix environment.
try using the command "terminfo" it will show you the function keys configured. If you need more than F10, I think you will need to customize this file.

regards,
Title: Re:tcp/ip pro function keys
Post by: newbie1 on October 29, 2006, 09:01:06 pm
Try this:
# infocmp > file.txt
edit the file.txt to include F10 and up...

example of the contents of the file

# infocmp
#       Reconstructed via infocmp from file: /usr/share/lib/terminfo/w/wyse
wy60|wyse60|Wyse 60,
        am, bw, hs, km, mir, msgr, xon,
        cols#80, lines#24,
        bel=^G, cbt=\EI, civis=\E`0, clear=\E*$<100>,
        cnorm=\E`1, cr=\r, cub1=\b, cud1=\n, cuf1=\f,
        cup=\E=%p1%'\s'%+%c%p2%'\s'%+%c, cuu1=^K,
        dch1=\EW$<11>, dl1=\ER$<5>, dsl=\EF\r, ed=\Ey$<100>,
        el=\Et, fsl=\r, home=^^, ht=\t, hts=\E1, il1=\EE$<4>,
        ind=\n, ip=$<3>, is1=\EcB0\EcC1,
        is2=\Ed$\EcD\E'\Er\EH^C\Ed/\EO\Ee1\Ed*\E`@\E`9\E`1^N^T,
        kbs=\b, kcbt=\EI, kcub1=\b, kcud1=\n, kcuf1=\f,
        kcuu1=^K, kdch1=\EW, kdl1=\ER, kf1=^A@\r, kf2=^AA\r,
        kf3=^AB\r, kf4=^AC\r, kf5=^AD\r, kf6=^AE\r, kf7=^AF\r,
        kf8=^AG\r, kf9=^AH\r, khome=^^, kil1=\EE, ri=\Ej$<7>,
        rmacs=\EH^C, rmir=\Er, rmso=\EG0, rmul=\EG0,
        rs1=\E~!\E~4$<150>, rs2=\EeF$<150>,
        rs3=\EwG\Ee($<200>, smacs=\EH^B, smir=\Eq, smso=\EGt,
        smul=\EG8, tbc=\E0, tsl=\EF,

below are samples fro defining F14, F15, F16 and F17
kf14=^Aa\r, kf15=^Ab\r, kf16=^Ac\r, kf17=^Ad\r,

You can check the "man ascii" for further information

then use the "tic" command to compile the edited file.txt

consult the manual pages for syntax info of the commands...

regards,