How to developed QR and bar code reader app with Win8 tablet?

I want to know the best approach of developing QR and bar code reader app with Win8 tablet? 
Please suggest any third party or native c# which could be help for me.
shishir

Hello,
This forum is for discussions and questions regarding profiles and Microsoft's recognition system on the MSDN and TechNet sites. It is not for products/technologies.
As it's off-topic here, I am moving the question to the
Where is the forum for... forum.
Karl
When you see answers and helpful posts, please click Vote As Helpful, Propose As Answer, and/or Mark As Answer.
My Blog: Unlock PowerShell
My Book:
Windows PowerShell 2.0 Bible
My E-mail: -join ('6F6C646B61726C406F75746C6F6F6B2E636F6D'-split'(?<=\G.{2})'|%{if($_){[char][int]"0x$_"}})

Similar Messages

  • Integration with Weighment scale and Bar Code reader

    Our users requires that the PO Receiving / Issuance / Movements should be done using the Bar Codes (Item Code) and the Weighment bridge (Quantity). Have anyone tried to interface ORACLE EBS standard form or developed Customized form within OAFramework to integrate these devices with Oracle Forms? Your suggestions and guidance would be highly appreciated.
    -- Ahmed

    Hi Gareth,
    Thanks for your response.
    The requirement is that when we receive the items we bring the item on the Weighment scale on a Trolley. The bar code is scanned to get the Item information. The weight from the weiging scale is populated in the GROSS Weight field. Then we have to unload the items from the Trolley and weigh the empty trolley to calculate the net weight (Gross wt - Empty Trolley wt = Net Weight). This net weight is then considered as the Quantity received.
    Hope this makes clear to you.
    Regards.

  • Bar code reading

    Hi All,
    In production we are using the Bar code reader before consume the components for production of assembly.
    while the time of assembly backflusing, the component get GI (consumped asper sap)
    but our client need that while do the scanning of the bar code of the components by Bar code reader, system need to do the GI.
    component backflush. so how we can use the bar code reader to do backflush automatically.

    Hi Raj,
    write a program to use MIGO by providing data read by BAR code reader.
    what kind of scanner you are using......?
    If the scanner is one of the non-programmable types.
    Write a small VB or C program that has just the required fields on the screen. Use the scanner to populate those fields and when the last field has been scanned, either the program itself automatically calls the relevant BAPI or the user clicks an 'OK' button which then calls the relevant BAPI.
    In either case the return from the BAPI should be displayed so the user knows whether to rescan or continue with the next goods movement.
    one more things , is this post is extended issue of your post for peridocal backflush or its different issue.....?
    if its extended one, please close the earlier one.
    Check it out and revert back.
    Regards
    Ritesh

  • How to read card reader (bar code reader) in simple java program ?

    hai all
    how to manipulate (read/write) card readers (or bar code reader ) in
    a java program ?
    should i import any particular package library ?
    pls give me any sample code or tutorials or tools, etc (whatever you have) .
    i am new to this card reader category
    its very urgent
    thank you .

    Nearly all card readers and barcode readers I've ever seen simply stick their input right onto stdin, so you can capture it just as if it had been typed in on a keyboard

  • Bar Code Reading in ABAP, through handheld scanner or say Barcode Reader

    HI,
    I want to scan the bar code label through the bar code reader, and get the bar code
    no in sap abap.
    Please let me know what settings and coding needs to be done to get the bar code
    no that is scanned.
    PLease let me know how i should go about it

    Hi Niranjan,
    There are a couple of third-party tools which can directly read the data from the barcode and you can use it in the ABAP program.
    Alternatively create a dialog screen. USe the barcode scanner and get the data as an input parameter and based on the input parameter do what ever validation you require and then based on the output of the validation trigger your relevant processing.
    Cheers
    VJ

  • How to develope, compile  and run soap service

    we want to implement the soap sevice in our concern.So its very diffcult to develope the soap program.I dont know about the soap service.please give me a input about soap and how to develope soap programs.Pls also give some sample programs and how to compile and run those programs.In our concern we are using UNIX operating system.
    Thanking you
    Yours faithfully
    Saran

    You should start by posting questions regarding web services on the correct forum ;)
    Next go to xml.apache.org and read the documentation regarding Apache Axis.
    You could also take a look at the Spring Framework's support for web services.
    You could even take a look at the Sun Web Service tutorials.
    The above resources have plenty of examples and sample code.

  • ) how can we print the bar code in SAP_SCRIPTS?

    ) how can we print the bar code in SAP_SCRIPTS?

    hi Pavan,
    barcodes wil be generated in the printer itself, if you give <BC>&HD_GEN-MATERIAL_NUMBER&<> then you have a value for "Barcode" .
    Adding Your Own Bar Code:-
    http://help.sap.com/saphelp_nw04/helpdata/en/d9/4a94fc51ea11d189570000e829fbbd/content.htm
    barcodes in SAP
    http://help.sap.com/saphelp_nw04/helpdata/en/68/4a0d5b74110d44b1b88d9b6aa1315b/content.htm
    Print Unique Indicator as a Barcode
    The printing of unique indicators of elements (reference numbers of records, case indicators, or document numbers) as barcodes is controlled by SAPscript forms.
    SAP delivers a common SAPscript form based on the SAP barcode type AUFNR for records, cases, documents and incoming post items.
    To create another SAP barcode type, you can copy the SAPscript form RMPS_BARCODE and then adjust it to your own requirements. Then you have to define the new form using the following attribute names in the table SCMGPARAM:
    From within a SAPscript form, a subroutine GET_BARCODE in the ABAP program QCJPERFO is called. Then the simple barcode contained there (‘First page’, ‘Next page’, ‘Last page’) is printed as local variable symbol.
    Definition in the SAPscript form:
    /: PERFORM GET_BARCODE IN PROGRAM QCJPERFO
    /: USING &PAGE&
    /: USING &NEXTPAGE&
    /: CHANGING &BARCODE&
    /: ENDPERFORM
    / &BARCODE&
    Coding of the calling ABAP program:
    REPORT QCJPERFO.
    FORM GET_BARCODE TABLES IN_PAR STUCTURE ITCSY
    OUT_PAR STRUCTURE ITCSY.
    DATA: PAGNUM LIKE SY-TABIX, "page number
    NEXTPAGE LIKE SY-TABIX. "number of next page
    READ TABLE IN_PAR WITH KEY ‘PAGE’.
    CHECK SY-SUBRC = 0.
    PAGNUM = IN_PAR-VALUE.
    READ TABLE IN_PAR WITH KEY ‘NEXTPAGE’.
    CHECK SY-SUBRC = 0.
    NEXTPAGE = IN_PAR-VALUE.
    READ TABLE OUT_PAR WITH KEY ‘BARCODE’.
    CHECK SY-SUBRC = 0.
    IF PAGNUM = 1.
    OUT_PAR-VALUE = ‘|’. "First page
    ELSE.
    OUT_PAR-VALUE = ‘||’. "Next page
    ENDIF.
    IF NEXTPAGE = 0.
    OUT_PAR-VALUE+2 = ‘L’. "Flag: last page
    ENDIF.
    MODIFY OUT_PAR INDEX SY-TABIX.
    ENDFORM.
    hope this helps you
    Regards,
    Jayant

  • Bar code reader problem

    when i try to install "bar code reader" in my nokia n73;
    i got
    'Unable to install - component is built in'
    plz help........

    I had this on my own N73 too. As did SO many people.
    As far as i am aware there is no fix for this.
    I think they scrapped it as a project for the N73 and have re-launched it on the N95 and it works on there.
    My posts are my opinion and in no way the direct views of Nokia.
    If my posts are helpful, please give me some KUDOS using the green star on the left.

  • Bar-code reader for "numbers"?

    Hi there, is there a bar-code Reader that works with "numbers"? I would like to scan products for price comparison while I'm shopping for my business. 

    If the bar-code reader can be recognized as an auxiliary keyboard input, as I believe most can, and if it issues a return character after each scan is transmitted, it will create a column of readings in a Numbers table.
    I don't think it needs to do anything special to work with Numbers, unless you have some higher expectations beyond creating a column of data.
    Jerry

  • HOW CAN I OPEN IMAGES/BAR CODES?

    HOW CAN I OPEN IMAGES/BAR CODES?

    You need an app to read barcodes in Safari. One or more is available in the App Store.

  • Can i attach a Bar code reader

    hello to every one
    can any one tell me how to attach a Bar Code reader with e-business suit special edition version 11.5.9 for inventory coding purpose....
    regards
    asad javaid

    You need a special hardware component for your printer (e.g. Jetmobile BarDIMM).
    Or a software called "barcode.dll" if you want to print on any printer without hardware extension in combination with SAPlpd (for printing barcodes with SAPscript).
    In SmartForms some barcode types can be printed without any additional hardware or software (OSS 430887).
    Stephan

  • I have an iphone 6 and my ex partner is able to read my text imessages remotely without having access to my phone. How is this possible and can anybody help me with this matter as it is a gross invasion of my privacy?

    Hi everybody,
    I have an iphone 6 and  my ex partner is intercepting and reading my imessage text messages remotely and without any access to my phone. Can someone shed any light on how this is possible and if so provide me with a solution to my problem as this is a gross invasion of my privacy and i seem powerless to combat this problem!

    It sounds as if your ex has your AppleID and passcode. Change the passcode.

  • How to get vendor and company code based on logistic invoice document

    how to get vendor and company code based on logistic invoice document in abap/4?

    Hello Kumar
    When you call BAPI_INCOMINGINVOICE_GETDETAIL using
    INVOICENUMBER = <number of invoice>
    FISCALYEAR = <fiscal year>
    the returned HEADERDATA contains what you are looking for:
    HEADERDATA-COMP_CODE
    HEADERDATA-DIFF_INF
    Regards
      Uwe

  • How to find the navigation bar at the apps, PDF reader Lite? after i zoom in, the navigation bar dissapear~ what should i do to make the navigation bar reappear?

    How to find the navigation bar at the apps, PDF reader Lite? after i zoom in, the navigation bar dissapear~ what should i do to make the navigation bar reappear?

    Hello,
    Yes it will be in your page template. You just need to move #NAVIGATION_BAR# substitution under the #LOGO# substitution tag, probably something like this should work
    #LOGO#&lt;div>#NAVIGATION_BAR#&lt;/div>
    Carl

  • QR Code Reader app resets device

    I have installed three QR code reader applications from three different companies, and I get the same result from each.  The apps successfully downloaded to my 8520, but when I use the app to "snap" the QR code, my 8520 just resets itself, without taking me to a mobile landing page or whatever that qr code was supposed to do.
    My phone does not like QR code reader apps!  Does anyone know why this would happen?  On the last app I installed, from the BB App page, I sent an email to the developer asking for help, but have not yet heard back from them.
    Thanks
    Dave

    Hi sbhave.
    Thanks a million for this.
    I am having some issues though.
    Running in Flash CS6, I have the .fla with your .ane in the library path. I then have both reader.as and Scanner.as in the same folder as the .fla. I am getting the error.
    "The name of package com.sbhave.nativeExtensions.zbar does not reflect the location of this file ....."
    This usualy means I need to place the Scanner.as file in a certain file structuire dictated by the rror message. However when I nest it there then the error is that it cant find Scanner.as
    Any ideas?
    Thanks
    Paul

Maybe you are looking for

  • Error while trying to park a CrossCC document

    Hi friends, When i am entering several line items related to vendors and GLs in one company code. And in the other company code also i am entering few vendor lines and GL lines and trying to perk the same and getting the below error message. Vendor/c

  • SSRS Custom code

    Can we call custom code in parent report, which written in the subreport Thanks in advance

  • Vpn client causing blue screen on windows xp

    Hi all, we have rolled out cisco vpn client to most of our laptops, we have now lots of users experiencing the blue screen of death when remotley connected. Does anyone know why this is? Cheers Carl

  • How can I, an inserted image in Photoshop CS6 permanently enlarge the insert again?

    Hello The problem is, whenever I insert eg a picture or want to create a font, this is as small as a point and each time when opening Photoshop CS6. Is there a way to solve the problem so that's the image a lot more bigger directly? Sorry for my bad

  • Am stuck in the Settings app main page, How do I get out of it?

    I have an iPhone 4S and had accidentally deleted my backup. I wents to turn the back up on and am now stuck in the Settings app main screen. How do I get out of it? I've tried tapping the home button and Siri comes up.