Execute simultaneo​us MP3 players which are dedicated to each their sound cards on the computer

I would like to control more than one MP3 (e.g. Windows Media Player) player from LabVIEW AND being able to switch the player outputs to each their dedicated sound card, running on the same computer. Is that possible in LabVIEW
I know that the selection of output device is based on ActivX command, that is for Media Player, but I do not quite know which command.
In general, can anybody help me on this topic � I would be most obliged.

AGK-DELTA,
I hope someone knows which ActiveX call it is. Otherwise, I would suggest searching through the help documentation for Windows Media Player and Microsoft's web site. (I tried looking for it, but I did not come up with anything after looking at all of the properties and methods.)
If you do find the answer, please post back to this forum so that we can help other LabVIEW users who may need to use this information.
Randy Hoskin
Applications Engineer
National Instruments
http://www.ni.com/ask

Similar Messages

  • Execute simultaneous MP3 players which are dedicated to each their sound cards on the computer

    I would like to control more than one MP3 (e.g. Windows Media Player) player
    from LabVIEW AND being able to switch the player outputs to each their
    dedicated sound card, running on the same computer. Is that possible in
    LabVIEW
    I know that the selection of output device is based on ActivX command, that
    is for Media Player, but I do not quite know which command.
    In general, can anybody help me on this topic - I would be most obliged.

    MSDN is probalby going to be your best source of information for this. Otherwise, I would suggest a net search for the media player active x commands.
    Other than that, experiment, try things out.
    Good luck.

  • How can i find all included pictures which are not in a album? (only in the Library)

    How can i find all included pictures which are not in a album? (only in the Library)

    Hi there,
    I'm afraid I don't quite understand your question. All images are in your Library and only those you specifically select from that Library would be in an Album. What platform are you using? Revel Mac, Elements, web browser, etc?
    Here is a link with some helpful information:
    FAQ: File Basics: How do I Upload, Download, Share, and Delete files in Revel?
    Thank you,
    Glenyse

  • Hi I currently update my iPad 2 to iOS, I had a number of films that purchased from my iPad from itunes, which are no longer in my iTunes or on my computer. How do I go about retrieving theses films?

    Hi I currently update my iPad 2 to iOS, I had a number of films that purchased from my iPad from itunes, which are no longer in my iTunes or on my computer. How do I go about retrieving theses films?

    Movies are not re-downloadable anywhere but in the US at present, so unless you are indeed in the US, you'll need to restore the movies from your backup.
    Regards.

  • I bought a used macbook pro from a friend. Software updates are available, but when I try to update, the computer asks for apple id and will only accept the former owner´s. How can I connect my macbook to my apple id?

    I bought a used macbook pro from a friend. Software updates are available, but when I try to update, the computer asks for apple id and will only accept the former owner´s. How can I connect my macbook to my apple id?

    The first thing you should do after acquiring a used computer is to erase the internal drive and install a clean copy of OS X. How you do that depends on the model. Look it up on this page to see what version was originally installed.
    If the machine shipped with OS X 10.4 or 10.5, you need a boxed and shrink-wrapped retail Snow Leopard installation disc, which you can get from the Apple Store or a reputable reseller — not from eBay or anything of the kind.
    If the machine shipped with OS X 10.6, you need the gray installation discs that came with it. If you don't have the discs, order replacements from Apple. A retail disc, or the gray discs from another model, will not work.
    To boot from an optical disc, insert it, then reboot and hold down the C key at the startup chime. Release the key when you see the gray Apple logo on the screen.
    If the machine shipped with OS X 10.7 or later, it should boot into Internet Recovery mode when you hold down the key combination option-command-R at the startup chime. Release the keys when you see a spinning globe.
    Once booted from the disc or in Internet Recovery, launch Disk Utility and select the icon of the internal drive — not any of the volume icons nested beneath it. In the Partition tab, select the default options: a GUID partition table with one data volume in Mac OS Extended (Journaled) format. This operation will permanently remove all existing data on the drive, which is what you should do.
    After partitioning, quit Disk Utility and run the OS X Installer. When the installation is done, the system will automatically reboot into the Setup Assistant, which will prompt you to transfer the data from another Mac, its backups, or from a Windows computer. If you have any data to transfer, this is usually the best time to do it.
    You should then run Software Update and install all available system updates from Apple. If you want to upgrade to a major version of OS X newer than 10.6, buy it from the Mac App Store. Note that you can't keep an upgraded version that was installed by the previous owner. He or she can't legally transfer it to you, and without the Apple ID you won't be able to update it in Software Update or reinstall, if that becomes necessary. The same goes for any App Store products that the previous owner installed — you have to repurchase them.

  • How to get installer created via LV project to install executables on a Vista machine which are in admin mode?

    I have an installer for a program created via a LV project which installs two executables.
    On Vista, only one of the executables is in admin mode.  So, I always have to right click
    on the other and select 'run as administrator'.
    Any way of getting both of them set to run as administrator by default?

    Do your executables include a manifest inside them or are you installing a manifest file next to your executables?
    What happens if you just manually copy the executables to your system rather than installing them? Same thing, or different behavior?
    -Bob

  • Difference in completion deadline for tasks which are parallel for each

    Hello Everybody,
    We have critical problem wherein we have set a completion deadline for a task against a human activity which is parallel for each but in the runtime, a difference of 1 second is appearing for the parallel tasks generated.
    We have raised a COMPLETIONDEADLINEISCRITICALEXCEPTION and if the deadline is met we are executing an ABAP RFC for auto approval.
    The automated step for executing the RFC is also parallel for each. When the tasks are created only one gets cancelled on completion of deadline while others get suspended. I am assuming this is happening because of the difference of 1 sec in the completion deadline for parallel tasks in the runtime.
    This is very critical and i request all you to please provide your inputs.
    Thanks & Regards
    Gaurang Dayal

    Hi Guarang,
    Do you expect that all the parallel tasks are instantiated at exactly the same point in time? That is an unrealistic expectation....
    First off, the Par Foreach doesn't spawn multiple threads, it executes each 'parallel' action in sequence in the same thread. Parallel in this context means all the actions (Task initiation) will occur and a process token will stay at each Task. For the token to pass the subsequent merge ALL the parallel tasks must be complete (all tokens must arrive at the merge). So you won't ever get all the tasks initiated at EXACTLY the same time.
    Further, even if the BPM kernel did spawn multiple threads (and there are very good reasons it won't!) it is rather unlikely that in these different threads you would for sure get all the initiations at EXACTLY the same time.
    If it's important that you get the task completion deadline the same in all tasks you should get a suitable timestamp in a mapping step which precedes the split and then set the deadline explicitly using that value when the task is initiated - i.e use a specific time value not an offset time value.
    An FWIW you should read and understand the documentation on Boundary Events so that you can know what to expect when one is fired and you know how to handle them.
    regards, Nick

  • How can I copy mp3 files which are already located by itunes to the actual itunes folder?

    Dear all,
    I would like to transfer my whole itunes library to a new computer. I know that this can be done by copying the whole itunes folder on the old computer (if you want to keep all the data of the itunes files). However, I have a little problem. Since I had a long period in which I did not download music from itunes or I got music from others, most files are not in the itunes library folder. I kept them in many different folders all over my hard disk, because it is a quite big collection from the past decade orso. In that time, I just dragged the files to itunes, so itunes can now locate them. They are not in the actual itunes library folder though. Is there a possible way to let itunes locate the files (it already has the locations) and put/copy them in the itunes library folder?
    Thanks in advance!!

    With these options selected in Edit > Preferences > Advanced:
    select File > Library > Organize Library...  When you get this prompt:
    check the Consolidate files box and - if not greyed out - the Reorganize files ... box, and click OK.  iTunes will then copy any media files that are not stored in the iTunes Media folder structure into it, so that you can then copy the complete iTunes folder to your new computer.

  • How can I run two different vi's in same project which are accessing same global variable with out effecting the speed of the execution of both the vi's

    Hi
    I have build an Labview project with FPGA target .  I have configured an FPGA VI and an host Vi to acquire data and logged the data to a file and stored the latest data in a global variable simultanously. I have configured one more VI in the same project  to access the global variable.  I have build a dll to access both the VI as functions in LabWindows/CVI code.  My task in CVI is to update configured GUI with latest data periodically and run the  host VI continously for a long time and log the data to a file. GUI should update for every one second with latest data for this I am using the second VI in which I am accessing the global varibale in which the latest data has been stored in host VI.

    Duplicate Post (go here)

  • Hi i have just purchased a mac pro. ive installed word for mac as i wanted to transfer word documents from a windows pc, which are ona usb stick. however i cannot open the usb stick. can anyone tell me what im doing wrong!

    Hi, I've bought a mac pro and installed word for mac, as i wanted to transfer word documents to the new pc. I saved the documents ona usb stick but I cannot open the documents from the stick. What am i doing wrong?
    thanks

    Welcome to the Apple Support Communities
    First of all, check that you are looking for your USB drive in the correct place. To do it, first connect the USB drive. Then, open a Finder window (press the left icon of Dock) and choose your USB drive on the Finder sidebar, under "Devices". Finally, just copy the documents you need to the internal disk.
    If you want to show the USB drive in Desktop, open Finder menu (on the menu bar) > Preferences > General, and tick "External drives"

  • How do I import backup files of Thunderbird profiles and Firefox bookmarks from my Windows XP computer, which are on a USB flashdrive, to my Windows 7 computer?

    Carbonite provided me with complete backup copy of all files on my prior Windows XP computer, on a 32GB Data Traveler USB flashdrive, so I can transfer them to my new windows 7 computer.
    Many of those files will simply restore....but, I believe that all my Firefox bookmark files and my Thunderbird address book and local folders files will need to be "imported" by some procedure to make the transition from WinXP to Win7.

    http://kb.mozillazine.org/Moving_your_profile_folder_-_Thunderbird

  • Can not download itunes spoke with apple who removed my older verision cause i could not do the update, so they tried to download the new verision which they could not do either, same story its the computer i have a windows xp 2002 32 bit  sp2

    No help from Apple..I have a Windows XP 2002 32bit with service pack 2 and 3..Apple removed my old itunes because i couldn't up date.However they could not down the new verison after trying several times...
                         error mgs reads     errorwriting to file:c:\programfiles\itunes\itunes.resources\ru.|proj\storepreorderbutton.png      then below it said verify that you have access to that directory.. Been with this for quite a few days and I'm burnt out  Thanks

    errorwriting to file:c:\programfiles\itunes\itunes.resources\ru.|proj\storepreorderbutton.png
    That one's consistent with disk/file damage. The first thing I'd try with that is running a disk check (chkdsk) over your C drive.
    XP instructions in the following document: How to perform disk error checking in Windows XP
    Vista instructions in the following document: Check your hard disk for errors
    Windows 7 instructions in the following document: How to use CHKDSK (Check Disk)
    Select both Automatically fix file system errors and Scan for and attempt recovery of bad sectors, or use chkdsk /r (depending on which way you decide to go about doing this). You'll almost certainly have to schedule the chkdsk to run on startup. The scan should take quite a while ... if it quits after a few minutes or seconds, something's interfering with the scan.
    Does the chkdsk find/repair any damage? If so, can you get an install to go through properly afterwards?

  • I have a samsung ex2220 lcd moniter. web pages appear crowded and items are stacked on each other. i have ensured the native res. is set. i have tried to zoom in and out with no change.

    trying to get web pages to appear correct. samsung ex2220. pages are crowded with items layered on top of others. res set to native.

    The following line tells me that this is not a template file, but a document created from a template called index.dwt
    <html xmlns="http://www.w3.org/1999/xhtml"><!-- InstanceBegin template="/Templates/index.dwt" codeOutsideHTMLIsLocked="false" -->
    This means that you saved a child document as a template file at some stage.
    If you go to Modify->Templates->Detach from Template, you can remove the template structure from your document. All you then need to do is to re-save the document as a template.

  • Purchasing a sound card for new computer which has integrated graphics

    I intend to purchase a new hp pavilion elite HPE-150t series desktop computer. It has a Intel Core i5-750 quad core processor at 2.66GH with integrated graphics. I will use the audio of this computer almost exclusively for listening to music on my headphones, off my hard drive. Is it adviseable to spend the additional money to purchase a Sound Blaster sound card?? Thank you for your opinions.

    On board sound is actually pretty good these days now. If you want digital sound. And the pc did not come with that option. You will have to upgrade to a sound card.

  • Previous downloaded Icloud songs are grayed out and won't play on the computer or download to my Ipod ???

    I know this is probably  a frequent question but I am having trouble finding a solid solution. I had Icloud songs on my computer but recently they went gray and won't play or download to my Ipod. Any help???

    Hi sweatt,
    Welcome to Apple Support Communities.
    You may find these steps helpful for resolving the issue you're encountering:
    iTunes Store: Troubleshooting iTunes Match
    http://support.apple.com/kb/ts4054
    Songs containing DRM (Digital Rights Management) may not appear, or may appear grayed out in iCloud. This can occur if your computer is not authorized for playback of that content. Try authorizing your computer, then manually update iTunes Match.
    To determine what Apple ID your computer needs to be authorized for, locate and select the song in your iTunes library.
    Choose File > Get Info.
    In the Summary tab, locate the Account Name field in the right column and write it down.
    Click OK.
    Choose Store > Authorize this Computer.
    Type in the account name from the Summary field and its password. Click Authorize.
    Choose Store > Update iTunes Match.
    Best,
    Jeremy

Maybe you are looking for

  • How to save a awt image in SVG file?

    hi all, Can anyone please tell me how to store a awt Image to an SVG file.... For this i tried to change the awt image to outputstream, But I couldnt do that. As i am using some licensed software if i able to convert the awt image to output stream th

  • Need Help on List of Months between Two Dates

    Hello everyone, I have a table which has startdate & enddate, and need a SELECT statement to list all months between these two dates for each given ID. I did some test, and could not figure out how to get the startdate & enddate from testing table (i

  • Unable to format partition

    Trying to setup a dev box with a 4TB HD. The last partition on the drive wont let me format it. Image link below. http://i.imgur.com/R3OFgLa.png http://i.imgur.com/7HhxqtI.png What am I doing wrong?

  • Switching From Mini to Video On iTunes

    On my Itunes, the main ipod is my mini. I just got a video so how do i delete the mini ipod off my computer and make the video ipod the main "source" or ipod?????

  • PODCAST: The item you've requested is not currently available in the U.S. store.

    My podcast is not showing up. Can anyone look at the code and see if there is an apparent error? http://www.larchitect.org/podcast/larchitect.xml