I've re-installed Windows 7, all drivers are installed, but there is no support for text areas, virtual keyboard icon never appears, mouse icon won't go when I touch the screen, and my C# code says it's not a tablet PC

    [DllImport("user32.dll")]
    private static extern int GetSystemMetrics(int nIndex);
    private const int SM_TABLETPC = 86;

    public static bool IsRunningOnTablet()
    {
        return (GetSystemMetrics(SM_TABLETPC) != 0);
    }

I've calibrated the screen, no problem with touchpad driver, etc. Windows 7 Home Basic 32 bit. I also noticed I can't scroll the pages with my finger.

link|improve this question

56% accept rate
RIP Steve Jobs, there are no Pro, Home, Blah Blah version of MacOS: windows.microsoft.com/en-US/windows7/Using-touch-gestures Flickers only supported on Home Premium+ – Nime Cloud Oct 6 '11 at 12:13
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.