Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6535021
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T10:19:18+00:00 2026-05-25T10:19:18+00:00

I have an app that is essentially a wizard that goes through some dialog

  • 0

I have an app that is essentially a wizard that goes through some dialog boxes. One of the forms has just a button on it that brings up the common “take picture” dialog.

After that picture functionality is dismissed the little keyboard icon shows up (inconveniently covering over one of my wizard buttons).

I tried setting the covered window to the fron by calling:

nextButton.BringToFront();

But that has no effect. I need to disable the little keyboard icon somehow and not sure how to do it.

Note – it is not the soft keyboard – but the image that the user clicks that will bring that up.

Note – there are no text controls on this form – there are only 4 buttons – one that initiates the CameraCaptureDialog, and a few others that control the user going to the “next” and “previous” screens.

EDIT

Given that two people were very confident their code would work, and looking at the references online I figured they might be right I figured I would elaborate on the issue since neither suggestions fix the problem.

The keyboard item seems to be a remnant left over after I select either the cancel or OK button on the menu in the “take picture”/CameraCaptureDialog.

On exiting the Dialog I seem to have the middle/keyboard menu item left over and there is nothing I seem to be able to do about it.

Here is what it looks like in the emulator (happens on emulator as well)
enter image description here

Note – calling all the following have NO effect on the keyboard icon thingy hiding the button:

// nextButton is the Button on the control hidden by the keyboard icon thingy
nextButton.Focus();
nextButton.BringToFront();
nextButton.Invalidate();
nextButton.Refresh();
nextButton.Show();
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T10:19:19+00:00Added an answer on May 25, 2026 at 10:19 am

    I was also looking for the solution to hide the small keyboard icon (SIP icon) and I achieved this by using the FindWindowW and MoveWindow or SetWindowPos functions of coredll.dll and user32.dll

    Declare the function we are interested in:

        [DllImport("coredll.dll", EntryPoint = "FindWindowW", SetLastError = true)]
        private static extern IntPtr FindWindow(string lpClassName, string lpWindowName);
    
        [DllImport("coredll.dll", SetLastError = true)]
        [return: MarshalAs(UnmanagedType.Bool)]
        private static extern bool SetWindowPos(IntPtr hWnd, IntPtr hWndInsertAfter, int x, int y, int cx, int cy, uint uFlags);
    

    Then find the handle to keyboard icon and call the SetWindowPos to hide it:

    IntPtr hWnd = FindWindow(Nothing, "MS_SIPBUTTON");
    SetWindowPos(hWnd, 1, 0, 0, 0, 0, &H80);
    

    Useful links:

    1. P/Invoke – coredll.dll
    2. Disable keyboard icon in Windows Mobile using VB.net
    3. Manage SIP – skip to the bottom on this post and look for
      comments of user name Mark

    EDIT

    I had to modify this slightly to compile.

        const int SWP_HIDE = 0x0080;
        IntPtr hWnd = FindWindow(null, "MS_SIPBUTTON");
        SetWindowPos(hWnd, IntPtr.Zero, 0, 0, 0, 0, SWP_HIDE);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a SharePoint web part (essentially just a Hello World app) that I
Have an app that has listings - think classified ads - and each listing
I have an app that executes commands on a Linux server via SSH just
I have an app that I'm writing a little wizard for. It automated a
I have a small Silverlight 4 app that essentially consists of a grid containing
We have a client who wants to build an app that essentially functions as
I have a gwt app that requires GWT Recaptcha for one of its part.
We have an old java app wrapped as a service that essentially is a
I have a rails app that has picked up a bit of traction, but
I have an app, that every 3 seconds, fires an event that goes to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.