Best mobile/handheld printer - for solid win store app connection

Hi,
I am looking for opinions on what is the best mobile/handheld printer for printing simple receipts from my win store app.  I have my app connecting to a legacy handheld printer and it keeps dropping connections.  I would appreciate any thoughts
on best printers to connect to my c# app and any pointers I should be aware of.
I have been looking at the zebra ones...any opinions on them?
Thanks

Congrats to Carmelo!
 Windows Phone and Windows Store Apps Technical Guru - February 2015  
Carmelo La Monica
Windows Phone 8: control Nokia Maps (Part 3)
JH: "Part 3 of the series how to work with the Nokia maps control. As the previous articles this one contains a lot of code snippets and some pictures. Good work!"
Ed Price: "A great topic, a fantastic breakdown of sections with clear descriptions, and a nice mix of code formatting and helpful images! Another stellar article from Carmelo! Great job including the link back at the end to the portal
article!"
Ed Price, Azure & Power BI Customer Program Manager (Blog,
Small Basic,
Wiki Ninjas,
Wiki)
Answer an interesting question?
Create a wiki article about it!

Similar Messages

  • What is the best wireless label printer for iPad?

    What is the best wireless label printer for iPad?

    The Epson Mobilelink P60 series and the Star Micronics T300 will work over wi-fi, but not being AirPrinter printers you'll have to find a third-party printing app that will work with them. The Epson P60 now also supports printing via Bluetooth, according to Epson:
    https://pos.epson.com/products/MobilinkP60withBluetooth?ProductPK=679
    Perhaps one of those would work for you.
    Regards.

  • How to find out if the company account for developing windows store apps is verified/approved?

    We have created the account for windows store app. How can I find out if the account was approved (the identity of the company)? 

    Hi,
    There is one more method,i know
    Set the JAVA_HOME and PATH
    then execute the
    $WL_HOME\wlserver_10.3\server\bin>setWLSEnv.cmd
    Go to directory which contains weblogic.jar ($WL_HOME\server\lib) and run below command
    $WL_HOME\wlserver_10.3\server\lib>java -cp weblogic.jar weblogic.version
    WebLogic Server 10.3.4.0 Fri Dec 17 20:47:33 PST 2010 1384255
    Hope this will be helpful,
    Regards
    Fabian

  • How to get the CanGoBack property and GoBack() method for windows 8 store app

    Hi Everybody,
            I m working windows 8 store app with webview. Here I have two buttons for go back and go forward. But i didn't have default  property for goback and goforward. How can i achieve this? 

    Thanks Rob Caplan
    Actually I want solution for XAML.
    I achieve this by using list and maintaining the the current item position of current URL.
    See the Sample code:
    In webview loadingcomplete event track the url navigations
    private int _bacListPositionElevate = -1;
    webView.LoadCompleted += (object s, NavigationEventArgs e) =>
    _currentUri = e.Uri;
    if (_currentUri != null)
    if (_currentUri != elevateNavigationStack[_bacListPositionElevate])
    elevateNavigationStack.Add(_currentUri);
    _bacListPositionElevate++;
    Now in the back button decrease the position like this:
    _bacListPositionElevate--;
    webView.Navigate(elevateNavigationStack[_bacListPositionElevate]);
    BackButton.IsTapEnabled = (_backStackPositionElevate != 0);
    FrwdButton.IsTapEnabled = (_backStackPositionElevate < elevateNavigationStack.Count - 1);
    Now in the forward button increase the position like this:
    _bacListPositionElevate++;
    wvElevate.Navigate(elevateNavigationStack[_bacListPositionElevate]);
    imgElevateBack.IsTapEnabled = (_backStackPositionElevate != 0);
    imgElevateFwrd.IsTapEnabled = (_backStackPositionElevate < elevateNavigationStack.Count - 1);

  • Known Issue: Setup warnings for Windows 10 SDK, Emulators for Windows Mobile, and Tools for Windows 10 Universal Apps (Windows 10 Insider Preview SDK and tools, April 2015 release)

    When you install Visual Studio 2015 when not connected to the internet, for example from an ISO, you may receive warnings after setup completes for Tools for Windows 10 Universal Apps, Windows 10 SDK, and Emulators for Windows Mobile. These warnings include:
    This product did not download successfully: The server did not return the file size.
    This product did not download successfully: Signature verification failed on downloaded file.
    This product did not download successfully: HTTP Status 502: The server….

    To fix this issue, your computer must be connected to the internet to download these components.
    Make sure your computer is connected to the internet.
    Open Control Panel, and select Programs and Features. 
    Select Microsoft Visual Studio 2015 RC, click Change, and then click
    Modify.
    Select the feature “Universal Windows App Development Tools”, and click
    Update.

  • Recommendations for best wireless multifunction printer for Macs $100?

    Anyone with recommendations for best wireless MFP for Macs <$100.  Would like to be able to print photos too.  Need EASY set up.  Prefer two paper cartridges.  Would like to be able to print from iPad, iPhone, Laptop and Mac.  Also need to fax.  
    Oh...and need to buy it tomorrow.  Help appreciated.

    Hard to say, we all like different flavors.
    If you have had a good experence with say your old Epson like I have, then that's the flavor that I will most likely stick with.

  • The best COLOR LASER printer for my buck?

    I have an HP 1012 black and white laser printer which works great! Only changed the toner once in two years.
    But now I need a good color laser printer that can print decent quality color photos. At least good enough for my band's fliers on glossy paper.
    Does anyone have any reccomendations?
    Thanks in advance!

    If you read this recent thread, you will find my musings on the subject.
    http://discussions.apple.com/thread.jspa?threadID=641100&tstart=0
    Keep in mind that how you intend to use the printer will affect your choices. If you are interested in photos, print quality is an issue. The number of pages you expect to print per month may determine whether you can get by with a personal printer or if you will need more of a business printer. If you are printing a lot of colored pages, faster printing of color documents is a step up in price. Make a list, check the specs from the various manufacturers, including the price of consumables, and you should be able to make an intelligent decision.

  • Best Practice: A J2EE Blue-Print for a Typical Web App

    Consider a typical synchronous Struts-based Web application which does a simple DB search and post. What are some of the main patterns and components that should be used if following the �industry best practices�
    Does the following flow seem accurate?
    Strust Action creates a TransferObject , and passes it to a Business Delegate. Delegate finds the appropriate BusinessObject, the Business Object uses the Data Access Object�.the CRUD operation happens and the result is sent back to the Action in the same TransferObject.
    Which one of these components need an interface?
    What's the best way for this components to interact with each other (factory, etc.)?
    Message was edited by:
    kmkiani
    Message was edited by:
    kmkiani

    There are 3 tiers in a Java EE application. (Presentation, Business, Integration).
    The BusinessDelegate in this scenario would be a Presentation-tier business delegate. This guy would interact with a Session Facade who lives on the Business-tier. The SessionFacade is the abstraction on the Business-tier and the Business Delegate is the abstraction on the Presentation-tier. It is these guys that have direct communication. This design enables low coupling between the actual implementations of each area. If done properly, you could go from EJB to Web Service to POJO business models without ever having to change anything in the Presentation-tier.
    These object-oriented design patterns are primarily for Enterprise applications with extensive Quality-of-Service requirements.
    In your scenario, the Presentation-tier would contain a MVC-based web application, i.e. Struts. The business model and business/domain requirements would be implemented in the Business-tier.
    Presentation Tier - Struts Web Application
    Business Tier - (EJB | POJO | WEB SERVICES) Application
    Integration Tier - (Relational Database | File System | XML Database | EIS)

  • What is the best and affordable printer for macbook pro?

    hi.... i have difficulties in printing my assignments... which i need to save my work using my thumbdrive then open it at windows to print....therefore, i want to buy a printer that can works with my macbook pro...what is your advice? i have tried to install hp printer but cant support my mac...really need your advice before i buy the new printer..

    It sounds as if you need a multi-function printer, with both wireless and AirPrint capabilities. A laser printer is usually back-and-white only, although there are color laser printers. Injest are probably the most common but they can go through some ink, resulting in some hefty cash being laid out for ink (although color laser printers have, likely, the highest consumable costs).
    I've had good luck, over the decades, with Canon inkjet printers. Take a look at the Canon website and look at the "3-in-1" inkjet printers that offer wireless and AirPrint capabilities, copy functions, and scanner functionality as well.
    Good luck,
    Clinton

  • What is the best mobile anti-virus for my Nokia 56...

    I want free mobile anti-virus so I will not waste my money and if possible, can you put the link for the anti-virus?
    antivirus discount

    I don't think you need to worry as the OS on your phone cannot get viruses. It run's on S40 (if you wanted to know).
    If I have helped you, please hit the star at the bottom of my posts - it's appreciated!
    Don't forget if your problem is solved to press the "Accept as Solution" button.

  • Are there best practices or guidelines for CP 8 quizzes via Connect?

    I'd like to add quizzes and feedback forms to Adobe Connect meetings and events (no learning module) and before investing time to explore how to best do this, wondered if there are guidelines, hint/tips, or best practices out there?
    If the meeting has multiple folks, would they each be on their own quiz? how and where do the results appear? Is it possible without the connect learning module ?
    I've also run across EduGameCloud and not sure if that would be a viable alternative or not - any experience?

    Hi There,
    Please find the link and see if it helps :-   http://helpx.adobe.com/captivate/using/connect.html
    Regards,
    Ajit

  • Best place for images outside of MS Store App?

    Newbie question? If multiple Apps share many images, where is the best place to keep them? 
    There will be hundreds of images in each App - some of them duplicate between Apps. I do not want to house them in the Images folder of the C# source code because they may change as time goes on. I would like to locate them "outside" the App and
    retrieve them when necessary if possible.
    I tried parking them in a website and accessing them this way: 
    ImagePath="http://mywebsite.com/Cookbooks/Receipts/English/Pages/Receipt1.1.1.png". But Go Daddy says I cannot house them that way for a MS store App. 
    So, where is the *best* place to put these images? Website, Web server, OneDrive, Azure, etc. Any other directions for building a scalable and flexible App would be appreciated. Thanks. 
    FS

    Hi,
    I think that's depend on your scenario.
    you could also use Windows Azure Mobile Services. There's a good Todo app sample on the following site -
    http://www.windowsazure.com/en-us/develop/mobile/tutorials/get-started/
    Or you can use web service, we can use httpClient to communicate with it.
    Please follow this document
    http://msdn.microsoft.com/en-us/library/windows/apps/xaml/hh761504.aspx
    Best Wishes!
    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. <br/> Click <a
    href="http://support.microsoft.com/common/survey.aspx?showpage=1&scid=sw%3Ben%3B3559&theme=tech"> HERE</a> to participate the survey.

  • Behaviors SDK support in Win10 Preview for store apps build in win 8.1

    We are using Windows 8.1 Behavior SDK (xaml) in our win store app to bind commands to ViewModel in VS2013.
    But when we run this project on a machine with Win 10 Preview edition, these Command bindings are not working.
    We are not able to hook any command from View to ViewModel using Behavior SDK.
    Is there any alternative for it or any support planned in Win 10 as our application heavily depends on it.
    File Details:
    Name: Behaviors SDK (XAML)
    FileType: SDK
    Identity: BehaviorsXamlSDKManaged, Version=12.0
    Version: 12.0.0
    Thanks and Regards Sanjay Gupta

    We are not supporting Windows 10 in this forum yet, and the developer preview has not been released.  We will have a forum open when DP comes around, so please wait for that release and ask it again at that time.
    Matt Small - Microsoft Escalation Engineer - Forum Moderator
    If my reply answers your question, please mark this post as answered.
    NOTE: If I ask for code, please provide something that I can drop directly into a project and run (including XAML), or an actual application project. I'm trying to help a lot of people, so I don't have time to figure out weird snippets with undefined
    objects and unknown namespaces.

  • Solution for Windows Store app "projectname.exe" does not contain a static 'Main' method suitable for an entry point . Error.

    Hi,
    I'm developed a blog reader for windows 8 store app. It was perfectly worked before. But suddenly it started to miss behave and I got an
    error. No other errors were there other than that.
    Error 
    Program c:\Users\.........\Desktop\Blog_Reader\Blog_Reader\obj\Release\intermediatexaml\Blog_Reader.exe' does not contain a static 'Main'
    method suitable for an entry point. 
    C:\Users\..........\Desktop\Blog_Reader\Blog_Reader\CSC    Blog_Reader
    But I found the solution while I fixing it.
    Solution for that is like below.
    Go to your App.Xaml and Right-Click thenGo to Properties
    Check whether the Build Action is
    ApplicationDefinition
    If not change it to ApplicationDefinition.
    Clean the code (solution) and Deploy
    Now the error is fiexed.

    Hi Robana, 
    Good sharing on the Technet. 
    This will definitely benefit other who may encounter the same issue as yours.
    Thanks for your sharing again. 
    Kate Li
    TechNet Community Support

  • TelemetryClient.TrackException Does Not Include Method Name Or Call Stack (Windows Store App)

    We are attempting to use Application Insights (v0.12.0-build17386) for our Windows Store App.  When we use TelemetryClient.TrackException, no details appear in the azure portal.  The Failed Method is "Could Not Parse" and the Call Stack
    is empty. If we click on the "..." it gives more details but still no method name or call stack information to help us determine where the exception was thrown.  Is this by design, not implemented, or did we miss something obvious?  The
    code is very simple:
    public static void LogException(Exception exception)
    TelemetryClient telemetryClient = new TelemetryClient();
    telemetryClient.TrackException(exception);

    This is a known limitation of this version. It is in the backlog to fix. Note though that 0.13 is out already and fix should be included in the next version (0.14)
    Anastasia

Maybe you are looking for