Is it possible to read Barcode using Blackberry Application?

Dear Friends,
Is it possible to read Barcode using Blackbbery application? If yes please let me know what thing we'll be require to develop the same. It is very urgent please help me.
Regards,
Haidar Ali

Yes, it is. There are already a number of barcode reader applications for BlackBerry, such as one named  "Edocrab".  Google it.
You'll need some experience in Java development. Please see the Developer section of this forum.
And here:
http://na.blackberry.com/eng/developers/
1. If any post helps you please click the below the post(s) that helped you.
2. Please resolve your thread by marking the post "Solution?" which solved it for you!
3. Install free BlackBerry Protect today for backups of contacts and data.
4. Guide to Unlocking your BlackBerry & Unlock Codes
Join our BBM Channels (Beta)
BlackBerry Support Forums Channel
PIN: C0001B7B4   Display/Scan Bar Code
Knowledge Base Updates
PIN: C0005A9AA   Display/Scan Bar Code

Similar Messages

  • Unable to open/use Blackberry Application World

    Hi everyone,
    I am using BB 9800, Recently I am facing problem to use Blackberry Application world. I already tried almost everything, delete then re-install, re-boot - open battery+memory card -and re-assemble back. those are not work. could anyone help me out? 

    Please tell us why you can't use it.. what happens when you click on the AppWorld icon?
    Or do you NOT see the AppWorld icon?
    Or you do, and what happens, what error messages?
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • How to Read barcode using Gige camera qith vison software

    Hi ,
    I have a Gige vision camera, I need to use this to read the barcode and save it in a file. Is there a way to read a barcode directly from the camera using labview vison software.Please do let me know if there is a way.
    Thanks,
    Ankit G
    Solved!
    Go to Solution.

    Hi Ankit 
    I dont know if you have NI's Vision Builder for Automated Inspection, it has a function to do Barcode reading, it is very convenient tool to use with lot of good examples.
    Kudos are welcomed 
    Thanks & Regards,
    Kunal Raithatha.
    CTD - CLAD (I wish I can take off that A, and maybe use it later to replace D :-)
    Easy Tip :- "To copy an image to a VI icon, drag the image file and place it on the icon
    located in the upper right corner of the front panel or block diagram" ...If you know any
    more reply back.

  • Is ti possible to read JavaDocs from an application ?

    Hi all,
    I have inserted inside Javadocs information which are useful for unit testing.
    Java source code can be read and parsed with standard i/o Api but I wonder if it's possible to use JavaDocs tool programmatically.
    For example how to read for example the variable "service" ?
    * @service=service1
    */Any suggestion ? thanks
    Francesco

    Hi,
    That "variable" you have inserted looks like a tag. Exactly the tag will be this (without '='):/*
    * @service service1
    */The "service" is the tag name and "service1" is the tag content.
    Javadoc offers lots of stuff to process tags (including, the user defined ones). The ultimate thing, I believe, is Doclet API that provides all the information Javadoc uses itself, including any tags specified within comments.
    Regards,
    Leonid Rudy
    http://www.docflex.com

  • Is it possible to read digital data using an external clock (PCI-6259 M)?

    I’m using a NI PCI-6259 M Series card and trying to write my program in VC++6.0 using the functions in the DAQmx driver.
    Question1: Not all functions listed in the NI-DAQmx C Reference Help seems to be supported by my NI-card, where can I find information about which of the functions that are supported?
    Question2: I want to read data from a device that clock out data on the falling edge of a clock signal. The clock signal and the data signal are routed to two DIO terminals on the NI-card. The question is if it is possible to read data using the clock as a sample clock? See two code examples below that doesn’t work. In both cases 10 samples are read at once, even if the external clock is not present.
    Example 1
    // Create tasks
    Status = DAQmxCreateTask("", &m_ReadTrimTask);
    // Set up read task
    status = DAQmxCreateDIChan(m_ReadTrimTask, "Dev1/port2/line0", "", DAQmx_Val_ChanPerLine);
    status = DAQmxCfgChangeDetectionTiming(m_ReadTrimTask,"Dev1/port2/line6","Dev1/port2/line6",DAQmx_Val_FiniteSamps, 10);
    // Read data
    int32 sampsPerChanRead, numBytesPerSamp;
    status = DAQmxReadDigitalLines(m_ReadTrimTask, 10, 10.0, DAQmx_Val_GroupByChannel, result, 10, &sampsPerChanRead, &numBytesPerSamp ,NULL);
    Example 2
    // Create tasks
    Status = DAQmxCreateTask("", &m_ReadTrimTask);
    // Set up read task
    status = DAQmxCreateDIChan(m_ReadTrimTask, "Dev1/port2/line0", "", DAQmx_Val_ChanPerLine);
    status = DAQmxSetSampTimingType(m_ReadTrimTask, DAQmx_Val_SampClk);
    status = DAQmxSetSampClkRate(m_ReadTrimTask, 1000.0);
    status = DAQmxSetSampClkActiveEdge(m_ReadTrimTask, DAQmx_Val_Falling);
    status = DAQmxSetSampClkSrc(m_ReadTrimTask, " Dev1/port2/line6");
    // Read data
    int32 sampsPerChanRead, numBytesPerSamp;
    status = DAQmxReadDigitalLines(m_ReadTrimTask, 10, 10.0, DAQmx_Val_GroupByChannel, result, 10, &sampsPerChanRead, &numBytesPerSamp ,NULL);

    Hello Magnus,
    Thank you for contacting National Instruments.
    "Question1: Not all functions listed in the NI-DAQmx C Reference Help seems to be supported by my NI-card, where can I find information about which of the functions that are supported?"
    The best place to look for this information would be the M Series Help Manual. There you can find the features of your PCI-6259 and what operations it supports.
    "Question2: I want to read data from a device that clock out data on the falling edge of a clock signal. The clock signal and the data signal are routed to two DIO terminals on the NI-card. The question is if it is possible to read data using the clock as a sample clock? See two code examples below that doesn’t work. In both cases 10 samples are read at once, even if the external clock is not present."
    Look at the "ContReadDigChan-ExtClk_Fn.c" example project which ships with the NI-DAQ driver. This is located at: C:\Program Files\National Instruments\NI-DAQ\Examples\DAQmx ANSI C\Digital\Read Values\Cont Read Dig Chan-Ext Clk.
    You will have to make some minor modifications to convert this to a finite acquisition, but that is simply a matter of changing the "sampleMode" parameter of the DAQmxCfgSampClkTiming() function. You will also have to route your clock signal to a PFI line and specify which line in your code.
    I hope this helps.
    Sean C.
    Applications Engineering
    National Instruments

  • ADF Mobile: Reading barcodes from camera

    Hi everyone,
    We are planning to develop an ADF Mobile application. One of our client requirements is that they can use Mobile camera to read barcodes from their products. We have tried to use Zxing for barcode recognizion but we get a poor level of successful recognizion
    Is there any way to read barcodes from photos (any kind of plugin or recommended library) that we can use in combination with ADF Mobile to get this feature? Has anyone worked with any other library that can recommend us to use for achieve a better successful level?
    Thanks in advance for your help,
    Carles Biosca
    Avanttic
    (blog.avanttic.com)

    Hi, thanks for your comments, but what would be the possible solution for developers who want to read barcodes using adf mobile 11.1.2.3 ? or when would be the next release date of adf mobile?
    I´ve tried to launch zxing via url (barcode app should be installed previously) as you can see in https://code.google.com/p/zxing/wiki/ScanningFromWebPages, but i fail getting the scan code.
    So i do not know if my try could be a solution or adf mobile definitively do not let to read barcodes.
    thanks for your attention.
    Yershom

  • Re: ADF Mobile: Reading barcodes from camera

    Hi there!
    Could you describe please, how do you integrate zxing in adf mobile? I think to open the camera using DeviceFeatures DataControl and then try to decode the image captured previously with Java but i do not get loading zxing classes in my android emulator device.
    Regards.

    Hi, thanks for your comments, but what would be the possible solution for developers who want to read barcodes using adf mobile 11.1.2.3 ? or when would be the next release date of adf mobile?
    I´ve tried to launch zxing via url (barcode app should be installed previously) as you can see in https://code.google.com/p/zxing/wiki/ScanningFromWebPages, but i fail getting the scan code.
    So i do not know if my try could be a solution or adf mobile definitively do not let to read barcodes.
    thanks for your attention.
    Yershom

  • How To Detect Color using my application

    Hi Friends,
    Iam sachin, working as a iphone mobile application developer.K coming to my question is it possible to
    detect colors using our application if yes Kindly guide me how to proceed .
    Thanks in advance ,

    you need to ask this in the developers forum - this is a formum mostly for end users not developers

  • Is it possible to read the file using File Adapter which is in client machi

    Is it possible to read the file using file Adapter which is in client machine(on the same network).Then what is thee need of FTP Adapter?

    You can achieve that by exposing your client machine as a drive, then you can go using file adapter.
    FTP adapter will help you to communicate with different machine which is in different network.
    It is considered good etiquette to reward answerers with points (as "helpful" - 5 pts - or "correct" - 10pts).
    Thanks,
    Vijay

  • Is it possible to read/write data from Salesforce using web service hub in Informatica?

    Anyone from Informatica can asnwer this question please

    Is it possible to read/write data from Salesforce using web service hub in Informatica? Not asking about PowerExchange for Salesforce or Informatica Cloud. Just using web service can we load data into Salesforce? Thanks ahead.

  • Can i use blackberry builtin email client with wifi without BIS or BES

    Hello everyone, I am using blackberry 9300 curve 3G. is it possible to use blackberry builtin email client through wifi without having the Blackberry services (BIS or BES)? i want to use my official email id (POP3 and smtp) on it. if possible please share the method..
    Thanks in advance

    Not that I know of.  You have to have a blackberry data plan in order to use the built in email.  After that, you can use WiFi only.
    Please click the Thumbs Up icon if this comment has helped you!
    If your issue is resolved, please click the solution button on the resolution!
    Every BlackBerry should have BlackBerry Protect, get it now! | Follow me on Twitter | Bring Back BBM Music!

  • Printing Barcodes using ABAP

    Hi Abapers,
       I Want to Print Barcode using ABAP Write statement. Is it Possible?
       Please suggest me.
    Thanks,
    Kishore

    Printing Barcodes with ABAP or SAPSCRIPT
    hope u will get some idea.
    We are now ready to print barcodes using an ABAP report program or a SAPSCRIPT form. In these examples we are using Code 39 barcodes which require very little formatting (all we have to do is add asterisks before and after the data).
    Sample ABAP Program:
    DATA: BAR_CODE1(16) VALUE `ABC01230123A01'
    NEW-PAGE PRINT ON IMMEDIATELY `X'.
    FORMAT COLOR OFF INTENSIFIED OFF.
    If the barcode is the first element on the page, the following Write
    statement is needed (otherwise you get a date in the first print
    control.
    WRITE:/
    Turn on the barcode font, print the data, and switch back to the
    printer's default font. Be sure to use NO-GAP to avoid unwanted
    characters or CR/LF.
    PRINT-CONTROL FUNCTION `BCPFX'
    WRITE: BAR_CODE1 NO-GAP
    PRINT-CONTROL FUNCTION `BCSFX'
    Add a Write statement to prevent insertion of CR/LF into the barcode.
    WRITE:/

  • SAP Workflow PO Approval using Blackberry

    Hi Everyone,
    I have a requirement where in which the PO Approval mails should be accessible using Black berry devices and approve/ reject from the Balck berry.
    Now I was not sure in how to go about it, But found this blog which speaks about the same , but still finding my way how to go about.
    /people/community.user/blog/2008/06/11/new-live-demos-for-blackberry-devices-available
    Can anyone please explain how to go about this ...
    Regards,
    Raj

    As you can read your e-mail from a Blackberry it should be possible to read the approval mails. But if you want to access an application from the Blackberry I think you will need the mobile solution from SAP.
    Regards,
    Martin

  • I have an external hard drive, from Iomega. However, I cannot copy or save any file to it. On my PC it says that is possible to read and write in it, but in my Mac, it says I can only read. can somebody help me?

    I have an external hard drive, from Iomega. that I can open and see my files. However, I cannot copy or save any file to it. On my PC I have it says that is possible to read and write in it, but in my Mac, it says I can only read. can somebody help me?
    Also, Im a photographer, so I like to name a lot of files at the same time (used to do in on PC and it was very usefull.) cannot find out how to do it on my Mac. Really appretiate if some one can give me a solution! Thanx

    Your drive is formatted with the NTFS file system.  OS X can read but not write to the NTFS file system.  There are third party drivers available that claim to add the ability to OS X to write to an NTFS partition.  I have not tried them and don't know if they work.
    The only file system that OS X and Windows can both write to natively is the FAT32 file system.

  • How to find a lost BlackBerry 10 smartphone using BlackBerry Protect

    Posted originally on the Inside BlackBerry Help Blog
    It’s a scenario no one wants to encounter but here’s a quick overview how you can help locate your BlackBerry 10 smartphone using BlackBerry Protect if you can’t find it.
    Tip: Using a BlackBerry OS device? Check out this post for help locating your device using BlackBerry Protect.
    Step 1 – Enable BlackBerry Protect and turn on Location Services
    To locate your smartphone you must enable BlackBerry Protect and turn on Location Services.
    After you turn on Location Services, your smartphone only sends its location information when you request it through the BlackBerry Protect website, or when your battery power is low.
    Swipe down from the top of the screen
    Tap  Settings > BlackBerry Protect
    Set the BlackBerry Protect switch to On
    Tap Location Services
    Set the Location Services switch to On
    Tap  Back to save your change
    Step 2 – Log in to the BlackBerry Protect website
    After you enable BlackBerry Protect and turn on Location Services, complete the following steps to view the location of your smartphone on a map.
    Log in to the BlackBerry Protect website located at http://protect.blackberry.com
    Click View Location
    BlackBerry Protect will attempt to locate your smartphone
    If your smartphone can be located, a map appears similar to the following showing the approximate location:
    If you still can’t find your smartphone at the reported location, use the Play Sound option within the BlackBerry Protect website. This option makes your smartphone ring loudly for one minute as well as activating the Loud profile.
    Help! BlackBerry Protect can’t locate my smartphone!
    To locate your device it must be turned on and connected to the wireless network.
    Because BlackBerry Protect also uses GPS, you may not locate your smartphone if it is inside a building, underground, or otherwise blocked from receiving a satellite signal.
    Did someone help you? Click Like! Did a post solve your issue? Click Accept as Solution!
    Follow me on Twitter or Google+ and subscribe to the Inside BlackBerry Help Blog

    TyW....... Great post...!   

Maybe you are looking for

  • IC Webclient Integration with MS Exchange

    Hi Can someone please help me with configuration/customization documents on crm IC Webclient Integration with MS Exchange. Please email me at [email protected] Thanks Abhijit

  • Can I contact Apple Support via chat or email?

    And if so, can I avoid having to pre-qualify by entering my ipod's serial number? I've been through this with them, but the problem keeps resurfacing: My ipod must be a refurbished repacement (it is a replacement) because every time they want my seri

  • I cannot download pay games, only free games. My ipod was bought from Amazon uk on a uk credit card but we live in Spain. How do I complete a purchase?

    When we try to download a PAY game onto the ipod touch a message comes up, your purchase could not be completed. I bought the ipod from Amazon UK on our UK credit card but we live and use in Spain. How can I get PAY downloads?

  • Java script and jsp

    Hello all I want to call javascript function without any event from a jsp code, like following <script> function add(a,b,c){ alert("hello");} </script> jdbc connection code while(rs.next() a=rs.getInt("id"); b=rs.getInt("id2"); c=rs.getInt("id3"); %>

  • Music on my cloud is corrupt

    I've got some music in my cloud that when I play it either from the cloud or download it to my computer to play is corrupt.  How do I resolve this (b/c of course, it's some of my favorite music)? It also doesn't matter which device I do this on, my P