Trying to install a Lab-LC Card into an LC. Can't get it to work!

Can't get the settings to work and its driving me mad! I know its an old bit of kit, but I am working to a very tight budget and would be greatfull for any help you can offer.

Thanks for your responce but I'm working with the Lab-LC from way back from 1992! (Sorry I'm poor it's all I can afford.) I've got it working now I think! I was a bit of a muppet and was trying to test it with the Lab-NB test app. Hindsight is a wonderfull advantage, but not as much as the ability to read my documentation! Those 2 letters meant I didn't go to bed until 3:30am and only then with a greatly diminished folicle count!
Do you know what is the latest version of Ni-DAQ software will work with it. I'm using a steam powered Mac LC, OS 7.5.5, 36Mb RAM, 400MB HD and the Lab-LC board.
Kind regards. Andy.

Similar Messages

  • Trying to create HTML5 Video Playlist in Edge Animate - I can't get it to work. Please help!?!?

    Hi All,
    I am creating an interactive site through Edge Animate and am in the process of trying to create a HTML 5 Video Playlist to function within Edge Animate.
    Current Process - Example:
    I have 3 videos that need to be played on a certain page.
    I created a symbol and dragged the videos to the stage and hidden them within that symbol's timeline.
    I then use thumbnail images in a side playlist to either .remove(); .hide(); a video and .show(); the next.
    However when I do a hide / show option, the video continue to plays in the background if I don't also create an if/else statement to pause it.
    My concern with pausing it is that it will continue to load and dramatically slow down the load time of the site.
    References:
    I found this which looks very helpful but don't know how to add this to edge composition.
    http://demosthenes.info/blog/909/Create-An-Automatic-HTML5-Video-Playlist
    Please help or put me in the right direction to create a playlist would be hugely... AMAZINGLY.. helpful.
    Thanks,
    Jason

    Hi Joe,
    Thank you so much for your help on this one. It is hugely appreciated!!
    I have been working frantically to implement your solution to get this working. I used the 'change src' method.
    I have added all my code below in case anyone wants the solution in the future.
    Could you please help below as I am now totally stuck with the <track> and 'event listener issues' !!
    Issue #1:
    I am having major problems with loading the 'closed captions' track element.
    Everything I click for the video to change source / to the next video, the closed caption track adds to the video and doesn't 'unload' the previous one. You then end up with multiple different subtitle tracks on the video screen
    - The closed captions / subtitles are not showing up in Google Chrome either?
    Issue #2:
    I can't get the event listener in edge animate to work for 'playing' and 'ended'. Can you please help and point me in the correct direction??
    Screenshot (showing what happens after the 3rd video is loaded)
    This is the Code I am currently using in the "Creation Complete" of this Symbol.
    SET UP OF VIDEO PLAYER AND FIRST VIDEO
    var vid = sym.$("video_Chapter5");
    vid.html('<video id="ch5video" width="100%" height="auto" margin= "0 auto"  \
    position ="relative"  poster="video/video1_poster.jpg"  controls="controls" </video> \
    <source id ="videomp4src" src="video/Video_mp4_1.mp4" type="video/mp4" </source> \
    <source id ="videoogvsrc" src="video/Video_ogv_1.ogg" type="video/ogv" </source> \
    <source id ="videowebmsrc" src="video/Video_webm_1.ogg" type="video/webm" </source> \
    <track id ="trackvtt" kind="subtitles" src="video/Video_1_Script.vtt" srclang="en" label="English" hidden </track>');
    VARIABLE IDS
    $(document).ready(function() {
      var videoID = 'ch5video';
      var sourceID1 = 'videomp4src';
      var sourceID2 = 'videoogvsrc';
      var sourceID3 = 'videowebmsrc';
      var trackID = 'trackvtt';
      var vid1mp4 = 'video/Video_mp4_1.mp4';
      var vid2mp4 = 'video/Video_mp4_2.mp4';
      var vid3mp4 = 'video/Video_mp4_3.mp4';
      var vid4mp4 = 'video/Video_mp4_4.mp4';
      var vid1ogv = 'video/Video_ogv_1.ogv';
      var vid2ogv = 'video/Video_ogv_2.ogv';
      var vid3ogv = 'video/Video_ogv_3.ogv';
      var vid4ogv = 'video/Video_ogv_4.ogv';
      var vid1webm = 'video/Video_webm_1.webm';
      var vid2webm = 'video/Video_webm_2.webm';
      var vid3webm = 'video/Video_webm_3.webm';
      var vid4webm = 'video/Video_webm_4.webm';
      var script1vtt = 'video/Video_1_Script.vtt';
      var script2vtt = 'video/Video_2_Script.vtt'; 
      var script3srt = 'video/Video_3_Script.vtt'; 
      var script4vtt = 'video/Video_4_Script.vtt';   
      var newposter1 = 'video/video1_poster.jpg';
      var newposter2 = 'video/video2_poster.jpg';
      var newposter3 = 'video/video3_poster.jpg';
      var newposter4 = 'video/video4_poster.jpg';
    VIDEO PLAYLIST THUMBNAIL BUTTONS - TO CHANGE VIDEO IN PLAYER
      sym.$('btn1').click(function(event) {
      sym.$('#'+videoID).get(0).pause();
      sym.$('#'+sourceID1).attr('src', vid1mp4);
      sym.$('#'+sourceID2).attr('src', vid1ogv);
      sym.$('#'+sourceID3).attr('src', vid1webm);
      sym.$('#'+trackID).attr('src', script1vtt);
      sym.$('#'+videoID).get(0).load();
      sym.$('#'+videoID).attr('poster', newposter1);
      sym.$('#'+videoID).get(0).play();  
      sym.$('btn2').click(function(event) {
      sym.$('#'+videoID).get(0).pause();
      sym.$('#'+sourceID1).attr('src', vid2mp4);
      sym.$('#'+sourceID2).attr('src', vid2ogv);
      sym.$('#'+sourceID3).attr('src', vid2webm);
      sym.$('#'+trackID).attr('src', script2vtt);
      sym.$('#'+videoID).get(0).load();
      sym.$('#'+trackID).load();
      sym.$('#'+videoID).attr('poster', newposter2);
      sym.$('#'+videoID).get(0).play();  
      sym.$('btn3').click(function(event) {
      sym.$('#'+videoID).get(0).pause();
      sym.$('#'+sourceID1).attr('src', vid3mp4); 
      sym.$('#'+sourceID2).attr('src', vid3ogv); 
      sym.$('#'+sourceID3).attr('src', vid3webm);
      sym.$('#'+trackID).attr('src', script3srt);
      sym.$('#'+videoID).get(0).load();
      sym.$('#'+videoID).attr('poster', newposter3);
      sym.$('#'+videoID).get(0).play();
      sym.$('btn4').click(function(event) {
      sym.$('#'+videoID).get(0).pause();
      sym.$('#'+sourceID1).attr('src', vid4mp4);
      sym.$('#'+sourceID2).attr('src', vid4ogv);
      sym.$('#'+sourceID3).attr('src', vid4webm);
      sym.$('#'+trackID).attr('src', script4vtt);  
      sym.$('#'+videoID).get(0).load();
      sym.$('#'+videoID).attr('poster', newposter4);
      sym.$('#'+videoID).get(0).play(); 
    EVENT LISTENER FOR PLAYING - TO CREAT BACKGROUND /LIGHT BOX SCREEN
    sym.$('#'+videoID).get(0).addEventListener('playing', function () {
    sym.getSymbol("backscreen_Ch5").$("backscreen").show();
    sym.getSymbol("backscreen_Ch5").play("play");
    EVENT LISTENER FOR ENDED - TO PLAY NEXT VIDEO IN SERIES
    sym.$('#'+videoID).get(0).addEventListener('ended', function () {
    //code to play next video

  • Trying to connect playbook to verizon mobile broadband usb modem--can't get it to work

    Does anyone have any suggestions for gettting the mobile broadband usb modem to work with my playbook?  it took me a while to find a connector to connect the mini usb to the type A usb, but now that i've got it, i couldn't get it to work at all.   Has anyone gotten something like this to work? 

    This is the instructions for tethering from a BlackBerry handheld device.
    Article ID: KB26141 How to setup Bluetooth Internet Tethering on the BlackBerry PlayBook tablet
    If you want to tether to another device, I don't know how.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • I tried to uninstall flash 9 and install 11 It says it completed but I can't get it to work ?

    I uninstalled the flash 9 on my computer and installed the 11 but It does not work. I'm using firefox

    What is your operating system, version & edition?
    Define "not work" - what do you see instead of the expected Flash content?
    [topic moved to Flash Player forum]

  • My adobe Flash wont load after installing the upgrade to firefox 6..how can i get it to work?

    i play the facebook games and i need to have adobe flash for it to work and when i upgraded the firefox to 6 the adobe doesnt download..i ve tried it many times and it wont download..

    Symantec need to update their Firefox add-ons so that they are compatible with Firefox 4. They have indicated that for Norton 360 they plan to release an update to Norton 360 to support Firefox 4 in early May - http://us.norton.com/support/kb/web_view.jsp?wv_type=public_web&docurl=20100720113635EN&ln=en_US
    I do not know about the time scale for updates for other Norton products. Pending the update by Symantec, if you want to use the Norton add-ons you will need to downgrade to Firefox 3.6.
    To downgrade to Firefox 3.6 first uninstall Firefox 4, but do not select the option to "Remove my Firefox personal data". If you select that option it will delete your bookmarks, passwords and other user data.
    You can then install the latest version of Firefox 3.6 available from http://www.mozilla.com/en-US/firefox/all-older.html - it will automatically use your current bookmarks, passwords etc.
    To avoid possible problems with downgrading, I recommend going to your profile folder and deleting the following files if they exist - extensions.cache, extensions.rdf, extensions.ini, extensions.sqlite and localstore.rdf. Deleting these files will force Firefox to rebuild the list of installed extensions, checking their compatibility, and reset toolbar customizations.
    For details of how to find your profile folder see https://support.mozilla.com/kb/Profiles

  • I am trying to sync my mac to a roland vs2480 and can't get it to work. Anyone have experience with this?

    I am trying to sync my mac to my Roland vs2480 and need to know how to make it work. I have a video I am trying to score and it has a smpte time code. How do you get that time code to the smpte "in" on the vs2480? I tried using an audio out signal from the video and sent it to the smpte in jack via rca cables but, it doesn't seem to recognize any signal. any insignt would be greatly appreciated.

    Video formats supported: H.264 video up to 1080p, 60 frames per second, High Profile level 4.2 with AAC-LC audio up to 160 Kbps, 48kHz, stereo audio in .m4v, .mp4, and .mov file formats; MPEG-4 video up to 2.5 Mbps, 640 by 480 pixels, 30 frames per second, Simple Profile with AAC-LC audio up to 160 Kbps per channel, 48kHz, stereo audio in .m4v, .mp4, and .mov file formats; Motion JPEG (M-JPEG) up to 35 Mbps, 1280 by 720 pixels, 30 frames per second, audio in ulaw, PCM stereo audio in .avi file format
    from
    http://www.apple.com/ipad-air/specs/
    it don't matter if your ipad is not the air if what you attempt to sync with it can't be played on the ipad because it don't support the format it will inform you

  • Trying to measure frequency with the cFP-CTR-502. Can't get tutorial to work!

    Hello,
    I am trying to measure the frequency of a
    signal that I'm counting using the cFP-CTR-502. I can successfully
    count pulses but I what I really need to know is the RATE of counts
    (counts/s or the frequency). I have found some Labview programs that
    supposedly do this that I've downloaded from ni.com (link below). The
    concept makes sense of using a gate and output but the programming is
    crazy - at least the program in the link below is. 
    1. Is there an easier way to measure the frequency of counts?
    2. Why will the program from the link below ( frequency_measurement__ctr_.vi
    ) not work on my system? I get an error everytime I run it. Could I be
    missing some VI's necessary for it to run? Or is it from another
    LabView version that is not compatible?
          The
    entire error is:   -32810 occured at FieldPoint initialization failed.
    Possible causes, 1. Missing or corrupt configuration file; 2. Failed to
    create call backs. : FP Open.vi
          Link for program: http://sine.ni.com/devzone/cda/epd/p/id/4682
    Thanks in advance for all your help and time!
    Sam T

    Sam,
    Have you tried the example titled Frequency Measurement.vi that ships with LV?

  • I'm trying to have existing Exchange accounts setup on my new iMac and can't get it to work.

    I have existing Exchange accounts setup on my iPhone and iPad to access my work email.  I'm trying to do the same on my new iMac and can't get it to work.  I have it setup the same as my iPad and it asks me for my password over and over...any suggestions?
    <Re-Titled By Host>

    Hi mwatts18,
    As a preliminary troubleshooting step, you should reference the information in the following article:
    OS X Mail: Troubleshooting sending and receiving email messages
    http://support.apple.com/kb/TS3276
    I would especially suggest that you delete the account and re-add it, making sure that you are entering the correct password when you add the account. Thanks for being a part of the Apple Support Communities!
    Regards,
    Braden

  • After trying to install 6500 Wireless all-in-one on my 3rd comp, it ceased to work

    While trying to install my (less than 2 year old) HP6500 Wireless all-in-one software on my 3rd networked computer, the software installation went into a loop and would not complete the installation.  After about an hour or so of waiting, I physically had to unplug the printer & eject the CD. Upon doing so, the printer became next to useless. The printer key pad no longer functions except when I first plug it in, and I can no longer access it from the other 2 original computers, even with USB.  The HP solution center says it’s on line, until I go to print via USB, then it says it’s offline. I can hook the USB up on the Widows 7 unit and force it to print Word Office documents, but when I try to print documents on it from either Internet Explorer or Fire Fox it wants to send a Fax??? I've uninstalled and reinstalled the software 3 times on my Windows 7 unit now to no avail. Is it my printer, the printer Firmware or what?  I have downloaded and run all the HP & Microsoft troubleshooting tools on the Windows 7 unit to no avail.  However; HP downloads will not successfully complete on my XP unit.  What should I do? Should I start over with a new wireless printer?
    Totally Confuzed

    Re: After trying to install 6500 Wireless all-in-one on my 3rd comp, it ceased to work
    Ref: 02-23-2012 08:53 AM
    12:38 AM 2/24/2012 UPDATE ON WHAT I HAVE TRIED AGAIN: 
    1. Power Reset on the Printer: Power off the printer. Unplug the power cable from the back of the unit. Wait 60 seconds. Replug the power cable to the printer and power it on. DONE
     2. Print a test page: Follow this document to print the test page. PRINTER SCREEN SAYS IT'S PRINTING AND THE POWER LIGHT IS FLASHING LIKE IT'S BUSY, BUT NOTHING IS HAPPENING. ONLY WAY TO USE IT NOW IS TO UNPLUG IT AND START OVER. THIS HAPPENS ALL THE TIME NOW. IT WILL NOT PRINT TEST REPORTS.
     3. Create a copy of the printed test page. CANNOT DO NOW - (PRINTER FREEZES UP WITH A BLINKING POWER LIGHT)
     4. Print the Wireless Network Test Report (To check if there are any errors) CANNOT DO
    Press the Setup button ( ). DOESN'T WORK EXCEPT MOMENTARILY...NOT LONG ENOUGH TO MAKE A SELECTION BEFORE IT HANGS AND FREEZES UP...
    Press the Right Arrow button ( ) to select Network Setup, and then press the OK button. CAN'T GET IT TO DO ANYTHING PRESSING THE OK BUTTON.
    Press the Right Arrow button ( ) to select Wireless Network Test , and then press the OK button. The Wireless Network Test Report prints. CAN'T GET IT TO DO ANYTHING PRESSING THE OK BUTTON.
    If you did not encounter any errors while performing the steps above then I think the hardware is OK. Test the software next. Let's use Windows 7 as the test platform. I DON'T THINK THE HARDWARE IS OK.
    1. Download the driver from HP.com. Once it gives you the option to either Run or Save make sure to select Save and then select Desktop as the target location where it will save the file. This is just to make it easier to find it. Once it finishes downloading the file, double click it to initiate the installation process. Follow the on screen instructions until you reach the "select how you want to connect the printer" window comes up. I ALREADY HAVE 3 COPIES ON MY DESKTOP & NONE OF THEM REACT ANY DIFFERENTLY.
     2. At the "select how you want to connect the printer" window select USB and then click Next (I think there is a next button). It should asks you to connect your printer but we are NOT going to do that. Place a checkmark on the option on the bottom of the window that gives you the option to bypass the connection phase of the installation. Click Next to proceed. Once the the installation process completes, restart your computer. I HAVE DONE IT BOTH WAYS BEFORE AND CANNOT GET THE INSTALLATION TO COMPLETE ON ANY OF THE 3 COMPUTERS NOW.
     If you did not encounter any errors at this point then it looks like the software installation process is good. Proceed to the next test. END OF TEST FOR TONIGHT. THANKS
    1. After the computer completely boots up, connect the USB cable to the printer and to the computer. The computer should detect the printer and initiate the HP installation process for it. Follow the onscreen instructions to complete the install.
    2. Try printing to test functionality.

  • Adobe CR 6.7 does not install into CS5, how can I get this installed to view CR files?

    Just installed CS5 onto new computer. Adobe bridge and CS5 do not recognize CR format. How can I get this installed. I have tried up dating and downloading the CR6.7 update, but can not get it to install. What do I do?

    Product updates

  • HT1349 Trying to install latest iTunes for Windows 7 64-bit. Keep getting this error message "Service 'Apple Mobile Device' (Apple Mobile Device) failed to start. Verify that you have sufficient privileges to start system services."

    Initially iTunes would not run although it had been running quite well up until now. Suddenly received this error on PC start-up "The program can't start because MSVC80.dll is missing from your computer. Try reinstalling the program to fix this problem." Research on Net pointed me to iTunes as the issue. Tried to start iTunes and received that message again. Tried installing latest version of 64-bit iTunes and received the subject message part way through the install: Trying to install latest iTunes for Windows 7 64-bit. Keep getting this error message "Service 'Apple Mobile Device' (Apple Mobile Device) failed to start. Verify that you have sufficient privileges to start system services."
    iTunes has been running great on this PC for years. What's up?
    Ron

    See Troubleshooting issues with iTunes for Windows updates.
    tt2

  • I am trying to import cr2files from the camera into lightroom 5 and keep getting an error message saying Lightroom can not read the files and therefore will not import them.  Has anyone had a similar problem-.thanks

    I am trying to import cr2files from the camera into lightroom 5 and keep getting an error message saying Lightroom can not read the files and therefore will not import them.  Has anyone had a similar problem….thanks

    If you are having the same problem, i.e. a disk permission problem, open your favorite search engine and search on, "change disk permissions", and I think you'll find plenty of information on how to fix the problem. This is a Lightroom forum. Your problem is with your operating system. There is no sense in rewriting instructions that are already available if you do a simple search.

  • HT4910 My iCal has frozen after I tried to paste info from an email into a reminder.  I get a "server reports an error" message with what I tried to paste in the box.  Calendar is frozen and will only close by forcing it.  Any help?

    My iCal has frozen after I tried to paste info from an email into a reminder.  I get a "server reports an error" message with what I tried to paste in the box.  Calendar is frozen and will only close by forcing it.  Any help?

    Did another window open with the pasted information?  If so, try hitting "enter/return" key and "delete" key at the same time.  That should get rid of the current action on the ical, the extra window should go bye-bye, and all should be fine with the world.

  • I have a laptop PC and am trying to install my product.  After the download is complete I get an error that says "the file archive part of Adobe Photoshop Elements 13 is missing. You need all parts.

    I have a laptop PC and am trying to install my product.  After the download is complete I get an error that says "the file archive part of Adobe Photoshop Elements 13 is missing. You need all parts.
    Please help, I don't know how to do this
    Thanks

    you need both the exe (which you have) and the matching 7z (that you don't have, yet).  dl it:
    Downloads available:
    Suites and Programs:  CC 2014 | CC | CS6 | CS5.5 | CS5 | CS4 | CS3
    Acrobat:  XI, X | 9,8 | 9 standard
    Premiere Elements:  13 | 12 | 11, 10 | 9, 8, 7
    Photoshop Elements:  13 |12 | 11, 10 | 9,8,7
    Lightroom:  5.7.1| 5 | 4 | 3
    Captivate:  8 | 7 | 6 | 5
    Contribute:  CS5 | CS4, CS3
    Download and installation help for Adobe links
    Download and installation help for Prodesigntools links are listed on most linked pages.  They are critical; especially steps 1, 2 and 3.  If you click a link that does not have those steps listed, open a second window using the Lightroom 3 link to see those 'Important Instructions'.

  • Hi. I'm trying to install Lightroom 4 but it's not downloading. Lightroom 5 won't work.

    Hi. I'm trying to install Lightroom 4 but it's not downloading. Lightroom 5 won't work.

    You can try downloading Light room 4 from here:
    http://prodesigntools.com/adobe-lightroom-4-is-out.html
    Prior to install, do ensure that the machine is compatible & the machine has all the permission to download & install.
    Regards
    Rajshree

Maybe you are looking for

  • Gateway Host and Gateway Service

    Hi,    How do I find the gateway host and gateway service when I am creating a RFC Destination. I am new R3 so please be as detailed as possible

  • Is it possible to pass a null value to a method?

    is it possible to pass a null value to a method? like this public String getParameterXX(String testvalue) String strX = "whatever"; if(testvalue!=null) strX = strX + " man " ; Is this possible ? is this legal String i = getParameterXX(null);

  • Discoverer desktop installation on Windows 7 64 OS XP Mode TNS error

    I have installed discoverer administrator and desktop in XP Mode on a Windows 7 64 OS. I downloaded the install from Oracle Discoverer 11g Fusion Middleware. I am using XP mode because I believe there is no download for the 64 bit OS in the Windows e

  • How to use the absence form

    Hi all I have a problem with entering absences for an employee. 1) I enter absence type and reason and notified date automatically gets populated by the current date. I save the form. 2)Later, I enter actual dates and try to save but I get the follow

  • Terrible External Hard Drive Fiasco

    First, let it be clear that no files are missing. I have all of my music files and movie files and TV show files -- everything still exists. The problem is, is that I copied them all onto an external hard drive a while back when I identified it as my