Signature capture solution for HP Elitepad 900 G1

Hi, Without the harness of docking station, is there a solution to integrate signature capture function for retail business with the stand-alone ElitePad 900 G1 ( compatible with Microsoft RMS 2.0)   Thanks very much for your help! Howard Chen 

I think i've solved this problem. (Sorry for my English, but i'm Italian).
The solution is very simple, i tried it more time and in my opinion, it work.
We need only to disable "Fast Startup" options in Windows 8 / 8.1
-WIN + X keys, then go to "Power Options"
-"Choose what the power button do"  (click on it)
-"Change settings that are currently unavaiable" (click)
-In "Shoutdown settings" UNCHECK "Turn on fast startup (recommended)"
Please tell me if it works also for you.

Similar Messages

  • Barcode scanner and signature capture device for BB

    If anyone is looking for a great barcode scanning and signature capture device for the BlackBerry, let me know.  The EnterMoCase is a ruggedized enclosure for the BB that incorporates barcode scanning and signature capture in a single-handed device.  It also has advanced power management features that allow the case to charge the BB when it gets below 40% of power. 

    Can you contact me directly about this application? I would like to discuss our requirements and understand if they will match with system capabilities.
    Michael Czopka
    [email protected]
    Synergex Logistics
    +1.905.565.1212

  • Video capture solutions for iMac?

    Back when I was a PC sufferer, I used to capture video of video games and other stuff via a video capture card. Now that I have better applications for editing footage on my iMac, I'd like to be able to capture footage again. The guy at the Apple Store told me that there are firewire devices that can capture video footage, unfortunately I forgot which company's products he recommended! Anyone here know of any such devices and which is the best brand to use? Thanks.

    Do you want to capture videos of the games you're playing on your Mac? If I understood it correctly, then you might try Snapz Pro X, and even if it's not a UB app, it runs smoothly on my iMac.
    Product Description
    Snapz Pro X is a quantum leap in video capture technology, adroitly capturing full motion video of anything on your screen at a blistering pace, complete with digital audio, and an optional microphone voiceover. Think of it as a digital video camera for your screen.
    If, on the contrary, I misunderstood what you wrote, forget about it.
    Ciao,
    Antonio

  • Screen capture app for lumia 900

    Does anyone know of a screen capture app for the Lumia 900? I've searched but can't seem to find one. Tks!

    @seeleyhj
    Whilst there is no such application upon Windows Marketplace due to constraints of Windows Phone OS this is not the whole story; although now that Chevron WP unlock defunct there only remains the option to pay Microsoft $99 for Windows phone app hub developer account, which would allow a "Screen Capturer" to be installed.
    Happy to have helped forum with a Support Ratio = 42.5

  • Elitepad 900 microsd card not detected

    I am having a problem with using the builtin microsd slot on the HP ElitePad 900.
    The Microsd card works on my laptop and works on the ElitePad when using the expansion jacket.
    When I insert the microsd card into the microsd slot on the rear on the Elitepad next to the 3G sim card, Windows 8 does not detect the card.
    I am using a Kingston 32Gb SDHC card.
    This question was solved.
    View Solution.

    Hello,
    Your ElitePad 900 is a Business model.  Your issue would be best answered on the HP Enterprise Business Community Forum
    Good luck!
    ↙-----------How do I give Kudos?| How do I mark a post as Solved? ----------------↓

  • Create a signature capture for Windows Phone 8.1 App

    I am creating a Windows Phone 8.1 app with signature capture control on one of my page. I am looking for an approach using C# so that I can draw points on a XAML with Canvas control. But it seems like that InkPresenter name space is removed from Windows
    Phone 8.1. Is there anyway I can get it around?
    Thanks, 

    Hi edwlin,
    Please try the suggestion provided by Rob Caplan in this thread:
    https://social.msdn.microsoft.com/Forums/windowsapps/en-US/2a428bef-d7a3-423b-a288-4c4b4efa8034/capture-digital-signature-in-windows-phone-blank-app?forum=wpdevelop
    Quote:
    You can capture the signature by listening to pointer messages and storing the points as they come through. You can then render them as Path segments.
    See Quickstart: Pointers
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Drive encryption for Elitepad 900

    I just received an HP Elitepad 900 tablet and I need to upgrade to Windows 8.1 in order to download many of the apps.  When trying to upgrade, I am required to uninstall HP drive encryption. When i try to uninstall, it says that i need to de-activate first  How do i accomplish this?

    This is an old post but I give my solution in case someone have the same problem
    Even certain HP technician can't give me an answer to this, I had to call to 2 different technician before receiving an indication to resolve my problem.
    So as you say you have to download Disktech, you can download it on the HP FTP server. 
    There's also a documentation on how to procede.
    ftp://ftp.hp.com/ftp1/pub/caps-softpaq/TCE&Q

  • PrintWindow api with possible solution for capture screenshot Google Chrome window

    Hi,
    as all you know, PrintWindow api give us a black image when us want a capture screenshot  of Google Chrome window. So, a friend said me that a possible solution for this problem is: 
    Reduce Google Chrome window for -1px in both sides and after this, reset  to original size. And so, will repaint again.
    Based on code below, someone could help me make this? sincerely I don't know where begin.
    [DllImport("user32.dll", SetLastError = true)]
    static extern IntPtr FindWindow(string lpClassName, string lpWindowName);
    [DllImport("user32.dll", SetLastError = true)]
    static extern IntPtr FindWindowEx(IntPtr hwndParent, IntPtr hwndChildAfter, string lpszClass, string lpszWindow);
    [DllImport("user32.dll")]
    private static extern IntPtr GetDC(IntPtr WindowHandle);
    [DllImport("user32.dll")]
    private static extern void ReleaseDC(IntPtr WindowHandle, IntPtr DC);
    [DllImport("user32.dll")]
    private static extern IntPtr GetWindowRect(IntPtr WindowHandle, ref Rect rect);
    [DllImport("User32.dll", SetLastError = true)]
    [return: MarshalAs(UnmanagedType.Bool)]
    static extern bool PrintWindow(IntPtr hwnd, IntPtr hDC, uint nFlags);
    [StructLayout(LayoutKind.Sequential)]
    private struct Rect
    public int Left;
    public int Top;
    public int Right;
    public int Bottom;
    public static Bitmap Capture(IntPtr handle)
    Rect rect = new Rect();
    GetWindowRect(handle, ref rect);
    Bitmap Bmp = new Bitmap(rect.Right - rect.Left, rect.Bottom - rect.Top);
    Graphics memoryGraphics = Graphics.FromImage(Bmp);
    IntPtr dc = memoryGraphics.GetHdc();
    bool success = PrintWindow(handle, dc, 0);
    memoryGraphics.ReleaseHdc(dc);
    return Bmp;
    private void button1_Click(object sender, EventArgs e)
    IntPtr WindowHandle = FindWindowEx(IntPtr.Zero, IntPtr.Zero, "Chrome_WidgetWin_1", null);
    Bitmap BMP = Capture(WindowHandle);
    BMP.Save("C:\\Foo.bmp");
    BMP.Dispose();
    Any suggestions here is appreciated.

    Hello,
    I would prefer capture the screen rather than get it from that application directly.
    It has been discussed in the following thread.
    Is there any way to hide Chrome window and capture a screenshot or convert the Chrome window to image?
    In this case, you could remove the line "ShowWindowAsync(mainHandle, 0); " since you don't want to hide it.
    using System;
    using System.Runtime.InteropServices;
    using System.Diagnostics;
    using System.Drawing.Imaging;
    [DllImport("user32.dll")]
    private static extern bool ShowWindowAsync(IntPtr hWnd, int nCmdShow);
    [DllImport("user32.dll")]
    public static extern bool GetWindowRect(IntPtr hWnd, out RECT lpRect);
    [DllImport("user32.dll")]
    public static extern bool PrintWindow(IntPtr hWnd, IntPtr hdcBlt, int nFlags);
    public WhateverMethod()
    //initialize process and get hWnd
    Process chrome = Process.Start("chrome.exe","http://www.cnn.com");
    //wait for chrome window to open AND page to load (important for process refresh)
    //you might need to increase the sleep time for the page to load or monitor the "loading" title on Chrome
    System.Threading.Thread.Sleep(4000);
    chrome.Refresh();
    IntPtr mainHandle = chrome.MainWindowHandle;
    RECT rc;
    GetWindowRect(mainHandle, out rc);
    Bitmap bmp = new Bitmap(rc.Width, rc.Height, PixelFormat.Format32bppArgb);
    Graphics gfxBmp = Graphics.FromImage(bmp);
    IntPtr hdcBitmap = gfxBmp.GetHdc();
    PrintWindow(mainHandle, hdcBitmap, 0);
    gfxBmp.ReleaseHdc(hdcBitmap);
    gfxBmp.Dispose();
    bmp.Save("c:\\temp\\test.png", ImageFormat.Png);
    ShowWindowAsync(mainHandle, 0);
    [StructLayout(LayoutKind.Sequential)]
    public struct RECT
    private int _Left;
    private int _Top;
    private int _Right;
    private int _Bottom;
    public RECT(RECT Rectangle)
    : this(Rectangle.Left, Rectangle.Top, Rectangle.Right, Rectangle.Bottom)
    public RECT(int Left, int Top, int Right, int Bottom)
    _Left = Left;
    _Top = Top;
    _Right = Right;
    _Bottom = Bottom;
    public int X
    get { return _Left; }
    set { _Left = value; }
    public int Y
    get { return _Top; }
    set { _Top = value; }
    public int Left
    get { return _Left; }
    set { _Left = value; }
    public int Top
    get { return _Top; }
    set { _Top = value; }
    public int Right
    get { return _Right; }
    set { _Right = value; }
    public int Bottom
    get { return _Bottom; }
    set { _Bottom = value; }
    public int Height
    get { return _Bottom - _Top; }
    set { _Bottom = value + _Top; }
    public int Width
    get { return _Right - _Left; }
    set { _Right = value + _Left; }
    public Point Location
    get { return new Point(Left, Top); }
    set
    _Left = value.X;
    _Top = value.Y;
    public Size Size
    get { return new Size(Width, Height); }
    set
    _Right = value.Width + _Left;
    _Bottom = value.Height + _Top;
    public static implicit operator Rectangle(RECT Rectangle)
    return new Rectangle(Rectangle.Left, Rectangle.Top, Rectangle.Width, Rectangle.Height);
    public static implicit operator RECT(Rectangle Rectangle)
    return new RECT(Rectangle.Left, Rectangle.Top, Rectangle.Right, Rectangle.Bottom);
    public static bool operator ==(RECT Rectangle1, RECT Rectangle2)
    return Rectangle1.Equals(Rectangle2);
    public static bool operator !=(RECT Rectangle1, RECT Rectangle2)
    return !Rectangle1.Equals(Rectangle2);
    public override string ToString()
    return "{ + _Left + "; " + " + _Top + "; Right: " + _Right + "; Bottom: " + _Bottom + "}";
    public override int GetHashCode()
    return ToString().GetHashCode();
    public bool Equals(RECT Rectangle)
    return Rectangle.Left == _Left && Rectangle.Top == _Top && Rectangle.Right == _Right && Rectangle.Bottom == _Bottom;
    public override bool Equals(object Object)
    if (Object is RECT)
    return Equals((RECT)Object);
    else if (Object is Rectangle)
    return Equals(new RECT((Rectangle)Object));
    return false;
    And the key method used is the one shared in
    Get a screenshot of a specific application.
    Regards,
    Carl
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Does EchoSign have a solution for forms that require more than 1 signature?

    We have a form that requires the employee to sign and the supervisor.  The employee and the supervisor are often at 2 different locations.  We want to use formscentral for the form.  We would like the form to go to the supervisor for their signature before it comes to our department.  Does echosign have a solution for form and signature process flow?

    If you are sending a document to be signed by multiple signers you will want to define the Role for the various fields. The Role is who is allowed  to interact with that field. By default the signers will sign in the order that their email addresses were entered into the To: field. It is important to keep this workflow in mind when setting up the signature fields.
    When a signature field is placed you can set the Role for that field (who can click to sign). Right click on the signature field for the 1st signer and select edit. This will open a window where you can define the options for that field. Select the 1st signers email address in the drop down list for the Role: field.
    Repeat this step to associate all the other signature fields for the other signers.
    Please watch this short tutorial video to see how to author a multi-signer document:
    https://www.echosign.adobe.com/en/misc/echosign-how-to-series-sending-to-multiple-signers. html

  • Digital Signature Solution for UCM

    Looking at options to implement Digital Signatures solution for Oracle UCM
    specifically we plan to use it with UCM forms in WCI portal. What are the
    products/solutions available and any implementation experiences please let me know.
    Thanks!

    Hi
    Yes , all this will need is configuration on UCM to be able to know which ones of the signatures need to be attached with which set of contents and likewise .
    Sorry , not having too much details on this and ETA for the same not available either .
    I am waiting to hear further and get more details as well .
    Thanks
    Srinath

  • TS4436 hi, when zooming in to capture still images, the image is really blurred and out of focus. is this a hardware issue and is there any solution for this?? or is my device faulty?

    hi, when zooming in to capture still images, the image is really blurred and out of focus. is this a hardware issue and is there any solution for this?? or is my device faulty?

    If you are using the iPhone camera zoom then remember that this is a digital zoom not an optical zoom. The zoomed in area will have fewer pixels and not appear as clear. The more you zoom the worse it gets. It's like cropping a picture after it has been taken.

  • How to install signature capture for xMAM 3.0 (laptop and handheld)

    Hi,
    can anyone help me to get the signature capture working. I haven't found any documentation about it.
    Regards,
    Florian

    Hi Larissa,
    that's the recent structure I use:
    signature.zip
    >META-INF\MANIFEST.MF
    >signature\mamsignapplet.cab
    >signature\signaturecapture.cab
    >WEB-INF\lib\signaturecapture.cab
    >WEB-INF\lib\mamsignapplet.cab
    Here's the content of manifest.mf:
    INSTALLATIONDIR: webapps/XMAM30_LAPTOP_SR04
    Here's the log of the java console:
    Loading: Class com.sap.mbs.mam.order.control.SignApplet not found
    java.lang.ClassNotFoundException: com.sap.mbs.mam.order.control.SignApplet
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadCode(Unknown Source)
         at sun.applet.AppletPanel.createApplet(Unknown Source)
         at sun.plugin.AppletViewer.createApplet(Unknown Source)
         at sun.applet.AppletPanel.runLoader(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Caused by: java.io.IOException: open HTTP connection failed.
         at sun.applet.AppletClassLoader.getBytes(Unknown Source)
         at sun.applet.AppletClassLoader.access$100(Unknown Source)
         at sun.applet.AppletClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         ... 10 more
    Thanks to anyone who is able to help!
    Regards,
    Florian

  • Camera not working - Elitepad 900

    Hello
    I am having a problem with the built-in camera on my Elitepad 900. When I open the camera app in win8.1, I get the following error :
    I have tried installing all new updates from the HP support site, with no luck. The camera is present in my device manager, with no errors. However, the geosensor shows up with an error, don't know if this could somehow be related due to geotagging feature. I have tried uninstalling the Broadcom driver, and using the newest from HP support, but with no luck.
    Hope somebody can help! :-)
    This question was solved.
    View Solution.

    Hey Student,
    I check my ElitePad and the drivers for the Camera are part of the overall driver pak.
    Try going to www.hp.com/support select your country. Mine is US, so I bookmarked:
    http://www8.hp.com/us/en/support.html
    then Drivers & Downloads search ElitePad
    Select the HP ElitePad 900 G1 Tablet
    Select your OS, I believe you said 8.1
    Select : Manageability - Driver Pack
    click: HP
    ElitePad 900 Microsoft Windows 8.1 x86 Driver Pack
    download sp64292.exe and follow the instructions.
    see if that helps.
    Also, my sensor had 4 items double check that after your update.

  • Preview Signature Capture Not Working

    Having no luck getting the signature capture to work in Preview.  I go through the appropriate steps, hold up my signature to the iSight camera, get a perfectly wonderful looking capture, click Accept, go back into my document, click on the icon and it acts is if no signature has been captured.  Go to manage signatures and none are there.  Even better, it keeps the indicator light on my iSight camera from turning off - even when I close out of Preview.  Only solution I've found for getting the indicator light to quit is to restart the computer ( i5 MacBook Air). Have tried several different PDFs and all the same result.
    Any thoughts?  Running lates version of Lion (10.7.1).  Obviously not the end of the world, but would definitely come in handy.  Thanks.

    Eytan Bernet1 wrote:
    Go to ~/library/preferences
    delete all the preview preferences while preview is quit.
    Relaunch Preview, and it should be fixed.
    This was close to the solution.  I ended up needing to delete ~/Library/Containers/com.apple.Preview to ultimately fix the problem.  Within the container was a separate set of preferences for Preview.app which were not aliased or symlinked to the set in ~/Library/Preferences.

  • Electronic signature capture - how to?

    Anyone have a solution for Macs for electronic signature capture? I cannot find any compatible signature capture devices on the market. Something like Topaz.
    Suggestions would be so very welcome.

    Autograph from TenOne is software that provides simple signature capture via the trackpad of a laptop. But it's not like Topaz. There's also a plug-in for use with FileMaker. I found these from a Google search, so you might give that a try.

Maybe you are looking for