Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. C / C++ / MFC
  4. Palm PC Keyboard

Palm PC Keyboard

Scheduled Pinned Locked Moved C / C++ / MFC
help
3 Posts 2 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • J Offline
    J Offline
    Joe OConnor
    wrote on last edited by
    #1

    I am using a HP-Jornada 420 Palm/PC and was wondering if it is possible to display the QWERTY keyboard (the one at the bottom of the screen) when I set focus on an edit box (or if the user presses an onscreen button). I thought I saw a function call to display/hide the keyboard, but I can't find it - anybody help. Joe.

    C 1 Reply Last reply
    0
    • J Joe OConnor

      I am using a HP-Jornada 420 Palm/PC and was wondering if it is possible to display the QWERTY keyboard (the one at the bottom of the screen) when I set focus on an edit box (or if the user presses an onscreen button). I thought I saw a function call to display/hide the keyboard, but I can't find it - anybody help. Joe.

      C Offline
      C Offline
      Chris Maunder
      wrote on last edited by
      #2

      This was posted on the CE mailing list a while back by David Baldauff:

      #include <aygshell.h>

      BOOL CInputPanel::Show(BOOL bShowThePanel)
      {
      SIPINFO siThePanel;
      memset(&si,0, sizeof(siThePanel));
      siThePanel.cbSize = sizeof(siThePanel);
      if ( SHSipInfo( SPI_GETSIPINFO, 0, &siThePanel, 0))
      {
      if(bShowThePanel)
      siThePanel.fdwFlags |= SIPF_ON;
      else
      siThePanel.fdwFlags &= ~SIPF_ON;

      return SHSipInfo( SPI\_SETSIPINFO, 0, &siThePanel, 0);
      

      }
      return FALSE;
      }

      J 1 Reply Last reply
      0
      • C Chris Maunder

        This was posted on the CE mailing list a while back by David Baldauff:

        #include <aygshell.h>

        BOOL CInputPanel::Show(BOOL bShowThePanel)
        {
        SIPINFO siThePanel;
        memset(&si,0, sizeof(siThePanel));
        siThePanel.cbSize = sizeof(siThePanel);
        if ( SHSipInfo( SPI_GETSIPINFO, 0, &siThePanel, 0))
        {
        if(bShowThePanel)
        siThePanel.fdwFlags |= SIPF_ON;
        else
        siThePanel.fdwFlags &= ~SIPF_ON;

        return SHSipInfo( SPI\_SETSIPINFO, 0, &siThePanel, 0);
        

        }
        return FALSE;
        }

        J Offline
        J Offline
        Joe OConnor
        wrote on last edited by
        #3

        Do I need to link in some library because when I compile the sample I get the following error: -- Deleting intermediate files and output files for project 'TestCeDlg - Win32 (WCE SH3) Release'. --------------------Configuration: TestCeDlg - Win32 (WCE SH3) Release-------------------- Compiling resources... Compiling... StdAfx.cpp Compiling... TestCeDlg.cpp TestCeDlgDlg.cpp Generating Code... Linking... TestCeDlgDlg.obj : error LNK2001: unresolved external symbol _SHSipInfo WCESH3Rel/TestCeDlg.exe : fatal error LNK1120: 1 unresolved externals Error executing link.exe. TestCeDlg.exe - 2 error(s), 0 warning(s) -- Thanks for your help so far. Joe.

        1 Reply Last reply
        0
        Reply
        • Reply as topic
        Log in to reply
        • Oldest to Newest
        • Newest to Oldest
        • Most Votes


        • Login

        • Don't have an account? Register

        • Login or register to search.
        • First post
          Last post
        0
        • Categories
        • Recent
        • Tags
        • Popular
        • World
        • Users
        • Groups