Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8237529
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T19:30:04+00:00 2026-06-07T19:30:04+00:00

I am doing on 1 desktop application . I want to add barcode reading

  • 0

I am doing on 1 desktop application .
I want to add barcode reading facility in this.
In my app all products would have barcodes in their price tags.
I will use some bar code scanner for scanning.
but i am having no ides about all these.
can anybody give apme sample code or some reference for this?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-07T19:30:05+00:00Added an answer on June 7, 2026 at 7:30 pm

    For COM over USB you need the COM port number (look in your device manager), lets say COM15
    Using VB.net use the System.IO.Ports.SerialPort class:

    Dim comPort As New SerialPort("COM15") 'New com port'
    Dim terminatingChar As Char = Chr(10) 'Terminate at vbLF (new line)'
    
    comPort.BaudRate = 9600 '9600 baud speed'
    comPort.Encoding = Encoding.ASCII 'Decode the bytes via ASCII code'
    
    comPort.Open() 'Open the port'
    
    Dim myBarcode as String = "" 'Current barcode is empty'
    
    While True'Read chars until the terminating char appears'
        Dim tempChar as Char = Convert.ToChar(comPort.ReadChar()) 'Read a char'
        If tempChar = terminatingChar Then Exit While 'If its the terminating char, exit the loop'
        myBarcode = myBarcode & tempChar 'If not append it to the barcode string'
    End While
    
    comPort.Close() '(!) Close the port'
    
    Console.WriteLine(myBarcode.Trim()) 'Trim it and show it to the user'
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a Java rich client desktop app. that I want to distribute on
I want to use google map API for my desktop application. The application will
I really want to create a stunning-looking GUI desktop application that looks like, for
I'm trying to create a java desktop application that holds desktop icons. The app
I have been a desktop developer for a few years mostly doing object oriented
Hopefully easy question, I have a desktop application that allows the user to upload
I'm trying to develop a GTK desktop application. I want to display an image
i have a java based desktop app that i am hoping to rewrite as
I can authenticate Facebook for desktop application using web browser control. But I want
I would like to write a Web Application that would have two buttons and

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.