saritha chakilala
2012-Jul-31 07:13 UTC
Integration of barcode Scanner or Reader into Application
Can any one help how to integrate barcode reader into my Application. What I want actually is that, By Capturing the value of barcode(registrtion_id) all other fields of that particular record need to autofill. ***I Am Looking For Your Valuable Reply **8 Thanks in Advance. -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit https://groups.google.com/groups/opt_out.
Michael Pavling
2012-Jul-31 07:39 UTC
Re: Integration of barcode Scanner or Reader into Application
On 31 July 2012 08:13, saritha chakilala <lists-fsXkhYbjdPsEEoCn2XhGlw@public.gmane.org> wrote:> Can any one help how to integrate barcode reader into my Application. > > What I want actually is that, > By Capturing the value of barcode(registrtion_id) all other fields of > that particular record need to autofill. > > ***I Am Looking For Your Valuable Reply **8 > > Thanks in Advance.Most barcode scanners are just another type of input device (like a keyboard or mouse). When they scan, they send the series of digits that the barcode represents to the computer as keyboard input - just as if the user had typed them. All you need to do is set up a form with a "barcode number" input field, which is observed for any changes. That value can be posted to your app and you can return whatever response you want. If you want to get funky, depending on the features of your scanner, you can set the scanner up to send a special character code before it sends the rest of the characters, and you could use javascript to watch out for the special character, and capture everything that comes after... -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit https://groups.google.com/groups/opt_out.
mariah lewis
2013-Nov-20 02:58 UTC
Re: Integration of barcode Scanner or Reader into Application
Michael Pavling wrote in post #1070748:> On 31 July 2012 08:13, saritha chakilala <lists-fsXkhYbjdPsEEoCn2XhGlw@public.gmane.org> wrote: >> Can any one help how to integrate barcode reader into my Application. >> >> What I want actually is that, >> By Capturing the value of barcode(registrtion_id) all other fields of >> that particular record need to autofill. >> >> ***I Am Looking For Your Valuable Reply **8 >> >> Thanks in Advance. > > Most barcode scanners are just another type of input device (like a > keyboard or mouse). When they scan, they send the series of digits > that the barcode represents to the computer as keyboard input - just > as if the user had typed them. > > All you need to do is set up a form with a "barcode number" input > field, which is observed for any changes. That value can be posted to > your app and you can return whatever response you want. > > If you want to get funky, depending on the features of your scanner, > you can set the scanner up to send a special character code before it > sends the rest of the characters, and you could use javascript to > watch out for the special character, and capture everything that comes > after...yeah ,Barcode scanner is an electronic device for reading printed barcodes. Like a flatbed scanner, it consists of a light source, a lens and a light sensor translating optical impulses into electrical ones. Nearly all barcode readers contain decoder circuitry analyzing the barcode''s image data provided by the sensor and sending the barcode''s content to the scanner''s output port check this http://www.keepautomation.com/products/barcode_scanner.html -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/53a3a242949458b633f431cdd3c2e64a%40ruby-forum.com. For more options, visit https://groups.google.com/groups/opt_out.
Dsad D.
2013-Dec-04 02:08 UTC
Re: Integration of barcode Scanner or Reader into Application
An image barcode reader can be integrate within .NET Framework in any programming language, such as, C#.NET, VB.NET, ASP.NET and .NET Windows Forms with any Visual Studio Version. http://www.rasteredge.com/dotnet-imaging/addon-barcode-reader/ -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/4b8607649b2a6eaa1802fba9db4ad48c%40ruby-forum.com. For more options, visit https://groups.google.com/groups/opt_out.