Welcome to the Invelos forums. Please read the forum rules before posting.

Read access to our public forums is open to everyone. To post messages, a free registration is required.

If you have an Invelos account, sign in to post.

    Invelos Forums->DVD Profiler: Desktop Technical Support Page: 1  Previous   Next
Barcode scanner - one ENTER too many
Author Message
DVD Profiler Unlimited Registrantkutch
Registered: January 15, 2009
Norway Posts: 26
Posted:
PM this userEmail this userVisit this user's homepageView this user's DVD collectionDirect link to this postReply with quote
Hi!
I purcashed a cuecat scanner that I've been using to register my movies with, but there is one serious issue with this and your product that I need help with



The CueCat scanner does not have any buttons on it. Instead, it simply reads a UPC code and hits enter. When using it in Notepad, this is easy to see, it inputs the UPC code followed by a CR.

BUT, I live in Norway, and often, when scanning a movie, more than one suggestion pops up, it could be that the movie I am scanning has the same UPC code as the danish and swedish registration, so I get a list to choose from BUT - because my barcode scanner inputs both the number AND submits a carriage return, I never get to choose. Instead, I get registered whatever was at the top of the choises.

Is there an option that could be set to prevent this from happening, i.e. by requiring that the input textbox where the code is entered is only parsed when a CR is detected?

Regards from Norway
Kutch!
- Homepage
DVD Profiler Desktop and Mobile RegistrantDr. Killpatient
Here's my card
Registered: May 19, 2007
Reputation: Highest Rating
United States Posts: 5,917
Posted:
PM this userView this user's DVD collectionDirect link to this postReply with quote
Happens in the US too, and happens with any scanner that supplies a carriage return after the code.

Don't have any suggestions though.
DVD Profiler Unlimited RegistrantStar ContributorLostmule
Ahhhh BRs.. more BRs...
Registered: December 3, 2008
Canada Posts: 186
Posted:
PM this userView this user's DVD collectionDirect link to this postReply with quote
with my thousands plus titles, I too am using a barcode scanner for adding new title(s) and doing my loan, return and inventory.

The scanner I have is very basic, yet highly programmable. What I mean is I went on the web page of the manufacturer and found out that I could use bar code to actually tell my bar code reader what I want to do, i.e: CR/LF, LF, CR only or nothing at all... just add the code in the field and wait for me to do something.

I have attempted to locate on the internet the bar codes you would need to scan in order to change the setting from within the bar code reader.. I suggest you read the following:

http://en.wikipedia.org/wiki/Cuecat

This is the scanner I own:

http://www.adesso.com/products_detail.asp?productid=244

If you look at the link I provided for the one I own, scroll down and you will see sample of setting up changes.. if you were to download the manual for it, you would be probably impressed by the amount of stuff you can do with that small scanner.. I paid for it 150$ and do not regret it! Furthermore, I do not have share with that company haha 

Eric
E
DVD Profiler Unlimited Registrantkutch
Registered: January 15, 2009
Norway Posts: 26
Posted:
PM this userEmail this userVisit this user's homepageView this user's DVD collectionDirect link to this postReply with quote
Thanks both for your replies -
Being a developer myself, it looks as it's just a matter of adding an option that determines when the UPC code should be attempted parsed.

As I can tell from behaviour now, parsing happens for each digit entered, thus for every number you enter with a conventional keyboard, the current value in the textbox is submitted for inspection.

Solving this programatically would be as easy as this:

- add an option named "UPC scanner hits return when reading a code" in options. internally, this could've been named UPCScannerSendsCR

then, on the "OnChange" event of that input box you could have somemthing similar to

public void UPCCode_OnChange( object sender, EventArgs e )
{
  // Disable "hot" code validation when using an UPC scanner, and wait for CR instead
  if( UPCScannerSendsCR )
    return;

  ValiddateUPCCode( );
}


public void UPCCode_OnUpdated( )
{
    if( UPCScannerSendsCR )
    {
        ValiddateUpcCode( );
    }

  // rest as before
}


-- this is simply my suggestion for a fix. My scannner does not seem to be one that I can alter in the sway lostmule described, plus, I am guessing this is a feature that more people would benefit from having. I may just end up buying that scanner, lostmule mine cost $9 hehe
Kutch!
- Homepage
DVD Profiler Unlimited RegistrantStar ContributorLostmule
Ahhhh BRs.. more BRs...
Registered: December 3, 2008
Canada Posts: 186
Posted:
PM this userView this user's DVD collectionDirect link to this postReply with quote
phew... good thing you are a programmer!!! with whta you wrote there (I have no clue ;-) ) I hope it solves what you want to accomplish!! *I know that I would probably have tossed the scanner in the garbage and went the easy road  )

Eric
E
    Invelos Forums->DVD Profiler: Desktop Technical Support Page: 1  Previous   Next