A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Access » General Discussion
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Audio?



 
 
Thread Tools Display Modes
  #1  
Old October 30th, 2008, 02:10 AM posted to microsoft.public.access
Antney
external usenet poster
 
Posts: 114
Default Audio?

I'm creating a database that will use a scanner to scan barcodes. The scanner
is pretty simple, nothing complicated. The scanner will be used to scan
barcodes on boxes and once scanned, it will automatically populate a field in
Access.

My questions is, is it possible to have audio with the scanner that will
announce the barcode number? Does Access have this feature? Like I said, the
scanner is simple, I don't need to program it or anything. I can use it with
Word or Excel. I scan a bar code for example, and if Word is up, the barcode
number will automatically appear on the Word document.

Does anyone know if Access has the feature of audio with a scanner attached?

Thanks.
  #2  
Old October 30th, 2008, 04:28 AM posted to microsoft.public.access
Tom van Stiphout[_2_]
external usenet poster
 
Posts: 1,653
Default Audio?

On Wed, 29 Oct 2008 19:10:01 -0700, Antney
wrote:

Let me make sure I understand. You scan a barcode into a textbox, and
then you want Access to automatically "speak" that value? No, there
is no built-in functionality that can do that.
You may want to look at phone system software that can read the input
from a phone and speak "you entered the account number 123456789 - do
you want to proceed?"
Not for the faint of heart.

-Tom.
Microsoft Access MVP


I'm creating a database that will use a scanner to scan barcodes. The scanner
is pretty simple, nothing complicated. The scanner will be used to scan
barcodes on boxes and once scanned, it will automatically populate a field in
Access.

My questions is, is it possible to have audio with the scanner that will
announce the barcode number? Does Access have this feature? Like I said, the
scanner is simple, I don't need to program it or anything. I can use it with
Word or Excel. I scan a bar code for example, and if Word is up, the barcode
number will automatically appear on the Word document.

Does anyone know if Access has the feature of audio with a scanner attached?

Thanks.

  #3  
Old October 30th, 2008, 04:53 AM posted to microsoft.public.access
John W. Vinson
external usenet poster
 
Posts: 18,261
Default Audio?

On Wed, 29 Oct 2008 19:10:01 -0700, Antney
wrote:

I'm creating a database that will use a scanner to scan barcodes. The scanner
is pretty simple, nothing complicated. The scanner will be used to scan
barcodes on boxes and once scanned, it will automatically populate a field in
Access.

My questions is, is it possible to have audio with the scanner that will
announce the barcode number? Does Access have this feature? Like I said, the
scanner is simple, I don't need to program it or anything. I can use it with
Word or Excel. I scan a bar code for example, and if Word is up, the barcode
number will automatically appear on the Word document.

Does anyone know if Access has the feature of audio with a scanner attached?

Thanks.


There's nothing built in to Access. You may be able to get some third party
software such as Dragon Naturally Speaking (not a recommendation, just one
that I've heard of); I'm not sure how to interface it with Access. Good luck.
--

John W. Vinson [MVP]
  #4  
Old October 30th, 2008, 09:16 PM posted to microsoft.public.access
jbguernsey
external usenet poster
 
Posts: 2
Default Audio?

On Oct 30, 2:10*am, Antney wrote:
I'm creating a database that will use a scanner to scan barcodes. The scanner
is pretty simple, nothing complicated. The scanner will be used to scan
barcodes on boxes and once scanned, it will automatically populate a field in
Access.

My questions is, is it possible to have audio with the scanner that will
announce the barcode number? Does Access have this feature? Like I said, the
scanner is simple, I don't need to program it or anything. I can use it with
Word or Excel. I scan a bar code for example, and if Word is up, the barcode
number will automatically appear on the Word document.

Does anyone know if Access has the feature of audio with a scanner attached?

Thanks.


Hi Ant

I saw this and it prompted me to try a bit of lateral thinking. If
(and it's a big if, I suppose) you can get hold of a wav file for each
of the 0 - 9 digits then, with appropriate parsing and Select Case
usage you might get something like this to work where the code plays
each sound in turn (it does actually play the sounds I used as a
test).

Public Function MySounds()
Dim xx As Double
Dim strSound As String
strSound = "C:\Program Files\Windows Media Player\wmplayer.exe"
strSound = strSound & " c:\windows\media\chimes.wav"
strSound = strSound & " c:\windows\media\chord.wav"
strSound = strSound & " c:\windows\media\ringin.wav"
xx = Shell(strSound, vbHide)
End Function

where you build your series of wav sounds according to the digits in
the bar code.

Worth a try - probably a lot simpler than trying to use speech
recognition.

Jeff.
  #5  
Old October 30th, 2008, 10:42 PM posted to microsoft.public.access
John W. Vinson
external usenet poster
 
Posts: 18,261
Default Audio?

On Thu, 30 Oct 2008 14:16:24 -0700 (PDT), jbguernsey
wrote:

On Oct 30, 2:10*am, Antney wrote:
I'm creating a database that will use a scanner to scan barcodes. The scanner
is pretty simple, nothing complicated. The scanner will be used to scan
barcodes on boxes and once scanned, it will automatically populate a field in
Access.

My questions is, is it possible to have audio with the scanner that will
announce the barcode number? Does Access have this feature? Like I said, the
scanner is simple, I don't need to program it or anything. I can use it with
Word or Excel. I scan a bar code for example, and if Word is up, the barcode
number will automatically appear on the Word document.

Does anyone know if Access has the feature of audio with a scanner attached?

Thanks.


Hi Ant

I saw this and it prompted me to try a bit of lateral thinking. If
(and it's a big if, I suppose) you can get hold of a wav file for each
of the 0 - 9 digits then, with appropriate parsing and Select Case
usage you might get something like this to work where the code plays
each sound in turn (it does actually play the sounds I used as a
test).

Public Function MySounds()
Dim xx As Double
Dim strSound As String
strSound = "C:\Program Files\Windows Media Player\wmplayer.exe"
strSound = strSound & " c:\windows\media\chimes.wav"
strSound = strSound & " c:\windows\media\chord.wav"
strSound = strSound & " c:\windows\media\ringin.wav"
xx = Shell(strSound, vbHide)
End Function


Or even record the ten digits yourself, if you have a microphone; create a
little ten row table with an Integer primary key, values zero through 9, and
the filename of the .wav file of each. Then open a recordset based on the
table, and step through the text string returned by the scanner and build up
strSound just as you're suggesting here.

--

John W. Vinson [MVP]
  #6  
Old October 31st, 2008, 04:38 PM posted to microsoft.public.access
Antney
external usenet poster
 
Posts: 114
Default Audio?

Thanks, I will try this.

"jbguernsey" wrote:

On Oct 30, 2:10 am, Antney wrote:
I'm creating a database that will use a scanner to scan barcodes. The scanner
is pretty simple, nothing complicated. The scanner will be used to scan
barcodes on boxes and once scanned, it will automatically populate a field in
Access.

My questions is, is it possible to have audio with the scanner that will
announce the barcode number? Does Access have this feature? Like I said, the
scanner is simple, I don't need to program it or anything. I can use it with
Word or Excel. I scan a bar code for example, and if Word is up, the barcode
number will automatically appear on the Word document.

Does anyone know if Access has the feature of audio with a scanner attached?

Thanks.


Hi Ant

I saw this and it prompted me to try a bit of lateral thinking. If
(and it's a big if, I suppose) you can get hold of a wav file for each
of the 0 - 9 digits then, with appropriate parsing and Select Case
usage you might get something like this to work where the code plays
each sound in turn (it does actually play the sounds I used as a
test).

Public Function MySounds()
Dim xx As Double
Dim strSound As String
strSound = "C:\Program Files\Windows Media Player\wmplayer.exe"
strSound = strSound & " c:\windows\media\chimes.wav"
strSound = strSound & " c:\windows\media\chord.wav"
strSound = strSound & " c:\windows\media\ringin.wav"
xx = Shell(strSound, vbHide)
End Function

where you build your series of wav sounds according to the digits in
the bar code.

Worth a try - probably a lot simpler than trying to use speech
recognition.

Jeff.

  #7  
Old October 31st, 2008, 04:39 PM posted to microsoft.public.access
Antney
external usenet poster
 
Posts: 114
Default Audio?

Thanks!

"John W. Vinson" wrote:

On Thu, 30 Oct 2008 14:16:24 -0700 (PDT), jbguernsey
wrote:

On Oct 30, 2:10 am, Antney wrote:
I'm creating a database that will use a scanner to scan barcodes. The scanner
is pretty simple, nothing complicated. The scanner will be used to scan
barcodes on boxes and once scanned, it will automatically populate a field in
Access.

My questions is, is it possible to have audio with the scanner that will
announce the barcode number? Does Access have this feature? Like I said, the
scanner is simple, I don't need to program it or anything. I can use it with
Word or Excel. I scan a bar code for example, and if Word is up, the barcode
number will automatically appear on the Word document.

Does anyone know if Access has the feature of audio with a scanner attached?

Thanks.


Hi Ant

I saw this and it prompted me to try a bit of lateral thinking. If
(and it's a big if, I suppose) you can get hold of a wav file for each
of the 0 - 9 digits then, with appropriate parsing and Select Case
usage you might get something like this to work where the code plays
each sound in turn (it does actually play the sounds I used as a
test).

Public Function MySounds()
Dim xx As Double
Dim strSound As String
strSound = "C:\Program Files\Windows Media Player\wmplayer.exe"
strSound = strSound & " c:\windows\media\chimes.wav"
strSound = strSound & " c:\windows\media\chord.wav"
strSound = strSound & " c:\windows\media\ringin.wav"
xx = Shell(strSound, vbHide)
End Function


Or even record the ten digits yourself, if you have a microphone; create a
little ten row table with an Integer primary key, values zero through 9, and
the filename of the .wav file of each. Then open a recordset based on the
table, and step through the text string returned by the scanner and build up
strSound just as you're suggesting here.

--

John W. Vinson [MVP]

 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 07:31 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.