03-29-2012 10:28 AM
Hi all,
I have a case in which I need to associate an audio file witha progress bar. What I want to do is to able to play a audio file which will say " Process started.." Process going on" and process ends, and it shoud be synchronized with the progress bar. Is there a way to do this .
Please let me know
Thanks,
Ankit G
Solved! Go to Solution.
03-29-2012 11:31 AM
I think you can use windows media player progress bar activex object to replicate it in your application.
03-29-2012 11:39 AM
Is this an absolute necessity, or is it just "bling?" If it is the latter, I could see it getting old really quickly. Even if it was necessary, try not to make it too obtrusive or the technician will just mute the sound, defeating the purpose.
03-29-2012 11:42 AM
Hi bill,
It is a necessity for my project.
thanks,
Ankit G
@billko wrote:
Is this an absolute necessity, or is it just "bling?" If it is the latter, I could see it getting old really quickly. Even if it was necessary, try not to make it too obtrusive or the technician will just mute the sound, defeating the purpose.
03-30-2012 05:13 PM
Are you referring to a LabVIEW horizontal/vertical progress bar, which basically has a U8 integer constantly written to it? Is this in a loop as it fills up?
If so, there is an entire palette that allows you to play waveforms. As you're writing to your progress bar the number, you can keep checking what that number is (event or case structure), and when it hits particular values, you play particular sounds. Here is a screenshot of that palette.
04-02-2012 12:47 PM
@Wee-Bey wrote:
Are you referring to a LabVIEW horizontal/vertical progress bar, which basically has a U8 integer constantly written to it? Is this in a loop as it fills up?
If so, there is an entire palette that allows you to play waveforms. As you're writing to your progress bar the number, you can keep checking what that number is (event or case structure), and when it hits particular values, you play particular sounds. Here is a screenshot of that palette.
Thanks, it was helpful.
- Ankit