Home AMX User Forum AMX Technical Discussion

iPCLinkWeb or computer connection Solution

Hi all ACE,
to the point, how to send "F1~F12" from virtual keyboard or command from iPCLinkWeb to the computer with LAN ?
or maybe all of you guys have any solution and way to communicate with computer specially sending key "F1~F~12"

thanks and regards

Novi Andriyansyah
Indonesian Programmer

Comments

  • aksyalaksyal Posts: 21
    please help me any solution for this case ???
  • AuserAuser Posts: 506
    When you install i!-PCLinkWeb a sample project is installed in C:\Program Files\AMX Control Disc\Solutions\i!-PCLinkWeb.

    Have a look at the string output of the F1 - F12 keys on the keyboard on the sample touch panel and follow the code through from line 613 in i!-PCLinkWeb2Mod.axs to see how to do this.

    A cursory glance seems to show that
    send_command <PCLink Device>, 'SENDKEYS-F<function key number>'
    
    should do what you're after.

    eg. For F1:
    send_command <PCLink Device>, 'SENDKEYS-F1'
    
  • aksyalaksyal Posts: 21
    Auser wrote: »
    When you install i!-PCLinkWeb a sample project is installed in C:\Program Files\AMX Control Disc\Solutions\i!-PCLinkWeb.

    Have a look at the string output of the F1 - F12 keys on the keyboard on the sample touch panel and follow the code through from line 613 in i!-PCLinkWeb2Mod.axs to see how to do this.

    A cursory glance seems to show that
    send_command <PCLink Device>, 'SENDKEYS-F<function key number>'
    
    should do what you're after.

    eg. For F1:
    send_command <PCLink Device>, 'SENDKEYS-F1'
    

    it's very kind of you...
    thanks and regard for your information
Sign In or Register to comment.