barcode scanner

Paolo Mazza mazzapaolo at libero.it
Fri Nov 26 02:43:22 EST 2004


Thanks to everybody.  I really appreciated  your suggestions on the 
barcode issue.
I will buy a barcode scanner tomorrow, I will test your script and let 
you know.
I am supposed to set up a Personnel control System using a win-PC and 
Revolution.

Best regards,

Paolo Mazza


Venerdì, 26 Nov 2004, alle 00:45 Europe/Rome, Sarah Reichelt ha scritto:

> Hi Paolo,
>
> As Roger pointed out, I have a Barcode Tester stack that will help, as 
> well as a stack that creates Code 128 barcodes if that is any use. As 
> others have said, the barcode scanner is exactly the same as a 
> keyboard, all you have to do is work out what rawKey code your barcode 
> scanner sends to indicate the end of a scan.
>
> Mine uses 65293 so here are the scripts I need:
>
> -- Any keyDown on the listed cards is taken as being a barcode 
> character.
> --
> on keyDown theKey
>   put "Front,Packing,Storing" into codeCards
>   if the short name of this card is in codeCards then
>     put theKey after fld "Barcode"
>   else
>     pass keyDown
>   end if
> end keyDown
>
> -- When the end character is received, process the characters
> -- that have already arrived.
> -- Don't forget to clear the "Barcode" field afterwards.
> --
> on rawKeyDown theKey
>   if theKey = 65293 then
>     put the short name of this card into cardName
>     send mouseUp to btn "Process Barcode" of cd cardName
>   else
>     pass rawKeyDown
>   end if
> end rawKeyDown
>
> Cheers,
> Sarah
> sarahr at genesearch.com.au
> http://www.troz.net/Rev/
>
>> Check out Sarah's Barcode Tester stack at http://www.troz.net/Rev/
>> I think it will provide exactly what you are looking for.
>>
>> Kind Regards,
>> Roger Eller <roger.e.eller at sealedair.com>
>>
>> On 11/25/2004 at 6:06 AM, Paolo Mazza wrote:
>>> How can I  send data from  a barcode scanner  to a  revolution stack
>>> on WIN-PC?
>>>
>>> Any of you experienced a software using   a barcode scanner as
>>> data-entry in a revolution stack?
>>>
>>> Ciao Paolo Mazza
>
> _______________________________________________
> use-revolution mailing list
> use-revolution at lists.runrev.com
> http://lists.runrev.com/mailman/listinfo/use-revolution
>



More information about the use-livecode mailing list