PC Review


Reply
Thread Tools Rate Thread

Audio Queues (sp) in excel 2003

 
 
MJB
Guest
Posts: n/a
 
      4th Apr 2008
Is it possible to get excel to give audio messages after every 2 entries.
 
Reply With Quote
 
 
 
 
Gary''s Student
Guest
Posts: n/a
 
      4th Apr 2008
In a standard VBA module, enter this single line:

Public i As Integer

In the worksheet code area, enter the following event macro:

Private Sub Worksheet_Change(ByVal Target As Range)
i = i + 1
If i = 2 Then
i = 0
Application.Speech.Speak "two entries made"
End If
End Sub

--
Gary''s Student - gsnu200777


"MJB" wrote:

> Is it possible to get excel to give audio messages after every 2 entries.

 
Reply With Quote
 
MJB
Guest
Posts: n/a
 
      4th Apr 2008
Hey Gary"s........!
I don't know enough about Office to know what you're describing- "VBA module"
event macro- they sound really cool but I'm an old gut that uses excel and
word somewhat but am totally lost otherwise-
Thanks
Mike

"Gary''s Student" wrote:

> In a standard VBA module, enter this single line:
>
> Public i As Integer
>
> In the worksheet code area, enter the following event macro:
>
> Private Sub Worksheet_Change(ByVal Target As Range)
> i = i + 1
> If i = 2 Then
> i = 0
> Application.Speech.Speak "two entries made"
> End If
> End Sub
>
> --
> Gary''s Student - gsnu200777
>
>
> "MJB" wrote:
>
> > Is it possible to get excel to give audio messages after every 2 entries.

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

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

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Job Queues. sapna mc Microsoft VB .NET 0 17th Jun 2008 08:10 AM
win2k/xp/2003 file I/O, buffering, queues, hdd seek =?Utf-8?B?dm9sa2VyLmJhZHppb25n?= Windows XP Performance 1 19th Apr 2006 02:15 AM
Check for the existence of a queues object inside a Dictionary of Queues Alexander Walker Microsoft C# .NET 8 7th Feb 2006 05:43 AM
perfmon on mq queues =?Utf-8?B?YW5pdGE=?= Microsoft Windows 2000 Applications 0 15th Oct 2004 03:39 PM
migrating print queues to Windows 2003 Mike Towan Microsoft Windows 2000 3 14th Sep 2004 09:06 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 08:21 PM.