Is it possible to start one counter on the rising edge of its gate and the second counter on the falling edge of the gate of the first counter?

Hello,
for my application I want to perform a buffered semi-period measurement with three counters.
Therefore the first one have to start on a rising edge of its GATE and stop on the next rising edge. This is not a problem.
But the second one should start on the falling edge (that immediately follows the rising edge) of counter 1 and stop the same time counter 1 will do.
The third one should start after the falling edge of counter 2.
Is this actually possible?
Thanks in advance.
Regards Thomas

I think I may be a bit confused on exactly what you are trying to accomplish, so if my answer does not
help, I apologize.
Anyways, the way to do it (from what I gather) is to set the gate of the third counter to start on the falling edge of counter 1 and start on the next falling edge of counter 1.
A little more clarity in how the counters are intended to start/stop may be helpful in getting a better answer.
Derek

Similar Messages

  • Imovie media browser only has one option, "Mobile". other videos had option for medium and small. mobile option wont import into iDVD. other videos gave me the Medium option, why not this one?

    help! imovie media browser only has one option, "Mobile". other videos had option for medium and small. mobile option wont import into iDVD. other videos gave me the Medium option, why not this one? need answers ASAP!

    That is your answer then.
    Large is 960x540
    Medium is 640x480 (or 720x480)
    Mobile is probably 480x272.
    It is offering you the sizes that make sense given the size of your source material.
    As a trick, you might try this. In your project, put a short 640x480 clip in the project as the first clip of the project. Then keep the rest of the project as is. See if it will let you share now in Medium. It will not look as good, because there are not enough pixels to cover the Medium size, but it might work.

  • Hi.   Does anyone know ifs it possible to play Spotify on the IPhone through both Airport Express and Apple TV?  Whenever I click either/or it just changes the speakers rather play through both?  Cheers

    Hi.
    Does anyone know ifs it possible to play Spotify on the IPhone through both Airport Express and Apple TV?
    Whenever I click either/or it just changes the speakers rather play through both?
    Cheers

    to transfer audio to an airport express the device needs to support airplay unless your samsung tv's manual clearly state it does support it then it don't
    appletv can't get audio input into it the optical connector is output only same with the hdmi port

  • While trying to restore os x and erase content, some problem about voice software came up and the computer asked me to restart and try again by clicking restart button. When I did this, the machine went to a gray start up screen and will not progress.

    While trying to restore os x and erase content on my MacBook pro, some problem about voice software came up and the computer asked me to restart and try again by clicking restart button. When I did this, the machine went to a gray start up screen with an apple and will not progress. I've waited more than 30 minutes and tried restarting again by holding the power button. Also, restore cd 1 will not eject so the computer will no longer move past the gray screen with spinning circle. Restore CDs had never beeused and were still in packaging in the original box. Ran hardware test just to check, and it came back as normal. Now what? I live nowhere near a genius bar :(

    computer asked me to restart and try again by clicking restart button.
    That's called a kernel panic...
    Since the install disc won't eject, try starting up while holding down the C key. If the Mac won't boot while holding down the C key, try ejecting disc by either holding down the mouse while starting up or holding down the Eject key while starting up.
    Try booting from your install disc so you can run Disk Utility in case the startup disk needs repairing.
    Insert your install disk and Restart, holding down the "C" key until grey Apple appears.
    Go to Installer menu and launch Disk Utility.
    (In Mac OS X 10.4 or later, you must select your language first from the installer menu)
    Select your HDD (manufacturer ID) in the left panel.
    Select First Aid in the Main panel.
    (Check S.M.A.R.T Status of HDD at the bottom of right panel. It should say: Verified)
    Click Repair Disk on the bottom right.
    If DU reports disk does not need repairs quit DU and restart.
    If DU reports errors Repair again and again until DU reports disk is repaired.
    When you are finished with DU, from the Menu Bar, select Utilities/Startup Manager.
    Select your startup disk and click Restart
    While you have the Disk Utility window open, look at the bottom of the window. Where you see Capacity and Available. Make sure there is always 15% free space.
    What is a kernel panic
    Mac OS X Kernel Panic FAQ
    Resolving Kernel Panics

  • Start one job after another complets using PL/SQL procedure and DBMS_JOB

    All,
    I am attempting to refresh a materialized view using DBMS_JOB and having a PL/SQL program loop through each materialized view name that resides in a table I created. We do the table because they have to be refreshed in a specific order and I utilize the ORDER_OF_REFRESH column to dictate which MV comes first, second, third, etc.
    Now - I have this working to the extent that it kicks off 4 materialized views (currently set the procedure to only do 4 MVs for testing purposes) but I would ultimately like the procedure to create a new DBMS_JOB that calls DBMS_MVIEW.REFRESH of the next view in line ONLY after the preceeding materialized view DBMS_JOB completes.
    The purpose of all of this is to do a few things. One - if I simply create a procedure with the DBMS_MVIEW.REFRESH call to each materialized view in order - that works but if one fails, the job starts over again and will up to 16 times - BIG PROBLEM. Secondly, we want the job that will call this procedure to fail if it encounters 2 failures on any one materialized view (because some MVs may be dependant upon that data and cannot use old stale data).
    This may not be the "best" approach but I am trying to make the job self-sufficient in that it knows when to fail or not, and doesn't kick off the materialized views jobs all at once (remember - they need to start one after the other - in order).
    As you can see near the bottom, my logic doesn't work quite right. It kicks off all four jobs at once with the date of the whatever LAST_REFRESH is in my cursor (which ultimately is from the prior day. What I would like to happen is this:
    1.) 1st MV kicks off as DBMS_JOB and completes
    2.) 2nd MV kicks off with a start time of 3 seconds after the completion of 1st MV (based off LAST_REFRESH) date.
    3.) This conitnues until all MVs are refresh or until 2 failures are encountered, in which no more jobs are scheduled.
    - Obviously I am having a little bit of trouble with #2 and #3 - any help is appreciated.
    CREATE OR REPLACE PROCEDURE Next_Job_Refresh_Test2 IS
    V_FAILURES NUMBER;
    V_JOB_NO NUMBER;
    V_START_DATE DATE := SYSDATE;
    V_NEXT_DATE DATE;
    V_NAME VARCHAR2(30);
    V_DELIMITER VARCHAR2(1);
    CURSOR MV_LIST IS SELECT DISTINCT A.ORDER_OF_REFRESH,
                                  A.MV_OBJECT_NAME
                        FROM CATEBS.DISCO_MV_REFRESH_ORDER A
                        WHERE A.ORDER_OF_REFRESH < 5
                   ORDER BY A.ORDER_OF_REFRESH ASC;
    CURSOR MV_ORDER IS SELECT B.ORDER_OF_REFRESH,
                                  B.MV_OBJECT_NAME,
                                  A.LAST_REFRESH
                             FROM USER_SNAPSHOTS A,
                                  DISCO_MV_REFRESH_ORDER B
                             WHERE A.NAME = B.MV_OBJECT_NAME
                        ORDER BY B.ORDER_OF_REFRESH ASC;
    BEGIN
    FOR I IN MV_LIST
    LOOP
    IF I.ORDER_OF_REFRESH = 1
    THEN V_START_DATE := SYSDATE + (30/86400); -- Start job one minute after execution time
              ELSE V_START_DATE := V_NEXT_DATE;
    END IF;
         V_FAILURES := 0;
         V_JOB_NO := 0;
         V_NAME := I.MV_OBJECT_NAME;
         V_DELIMITER := '''';
    DBMS_JOB.SUBMIT(V_JOB_NO,'DBMS_MVIEW.REFRESH(' || V_DELIMITER || V_NAME || V_DELIMITER || ');',V_START_DATE,NULL);
              SELECT JOB, FAILURES INTO V_JOB_NO, V_FAILURES
              FROM USER_JOBS
              WHERE WHAT LIKE '%' || V_NAME || '%'
              AND SCHEMA_USER = 'CATEBS';
    IF V_FAILURES = 3
    THEN DBMS_JOB.BROKEN(V_JOB_NO,TRUE,NULL); EXIT;
    END IF;
    FOR O IN MV_ORDER
    LOOP
    IF I.ORDER_OF_REFRESH > 2
    THEN V_NEXT_DATE:= (O.LAST_REFRESH + (3/86400)); -- Start next materialized view 3 seconds after completion of prior refresh
    END IF;
    END LOOP;
    END LOOP;
    EXCEPTION
    WHEN NO_DATA_FOUND
         THEN
              IF MV_LIST%ISOPEN
                   THEN CLOSE MV_LIST;
              END IF;
    NULL;
    END Next_Job_Refresh_Test2;
    ---------------------------------------------------------------------------------------------------------------------

    Justin,
    I think I am getting closer. I have a procedure shown just below this that updates my custom table with information from USER_SNAPSHOTS to reflect the time and status of the refresh completion:
    CREATE OR REPLACE PROCEDURE Upd_Disco_Mv_Refresh_Order_Tbl IS
    V_STATUS VARCHAR2(7);
    V_LAST_REFRESH DATE;
    V_MV_NAME VARCHAR2(30);
    CURSOR MV_LIST IS SELECT DISTINCT NAME, LAST_REFRESH, STATUS
                             FROM USER_SNAPSHOTS
                        WHERE OWNER = 'CATEBS';
    BEGIN
    FOR I IN MV_LIST
    LOOP
         V_STATUS := I.STATUS;
         V_LAST_REFRESH := I.LAST_REFRESH;
         V_MV_NAME := I.NAME;
    UPDATE DISCO_MV_REFRESH_ORDER A SET A.LAST_REFRESH = V_LAST_REFRESH
    WHERE A.MV_OBJECT_NAME = V_MV_NAME;
    COMMIT;
    UPDATE DISCO_MV_REFRESH_ORDER A SET A.REFRESH_STATUS = V_STATUS
    WHERE A.MV_OBJECT_NAME = V_MV_NAME;
    COMMIT;
    END LOOP;
    END Upd_Disco_Mv_Refresh_Order_Tbl;
    Next, I have a "new" procedure that does the job creation and refresh show just below this which, when starting the loop, sets the LAST_REFRESH date in my table to NULL and the STATUS = 'INVALID'. Then if the order of refresh = 1 then it uses SYSDATE to submit the job and start right away, else if it's not the first job, it uses V_NEXT_DATE. Now, V_NEXT_DATE is equal to the LAST_REFRESH date from my table when the view has completed and the V_PREV_STATUS = 'VALID'. I think tack on 2 seconds to that to begin my next job.... See code below:
    CREATE OR REPLACE PROCEDURE Disco_Mv_Refresh IS
    V_FAILURES NUMBER;
    V_JOB_NO NUMBER;
    V_START_DATE DATE := SYSDATE;
    V_NEXT_DATE DATE;
    V_NAME VARCHAR2(30);
    V_PREV_STATUS VARCHAR2(7);
    CURSOR MV_LIST IS SELECT DISTINCT A.ORDER_OF_REFRESH,
                                  A.MV_OBJECT_NAME,
                                  A.LAST_REFRESH,
                                  A.REFRESH_STATUS
                        FROM CATEBS.DISCO_MV_REFRESH_ORDER A
                        WHERE A.ORDER_OF_REFRESH <= 5
                   ORDER BY A.ORDER_OF_REFRESH ASC;
    BEGIN
    FOR I IN MV_LIST
    LOOP
    V_NAME := I.MV_OBJECT_NAME;
    V_FAILURES := 0;
    UPDATE DISCO_MV_REFRESH_ORDER SET LAST_REFRESH = NULL WHERE MV_OBJECT_NAME = V_NAME;
    UPDATE DISCO_MV_REFRESH_ORDER SET REFRESH_STATUS = 'INVALID' WHERE MV_OBJECT_NAME = V_NAME;
    IF I.ORDER_OF_REFRESH = 1
    THEN V_START_DATE := SYSDATE;
    ELSE V_START_DATE := V_NEXT_DATE;
    END IF;
    DBMS_JOB.SUBMIT(V_JOB_NO,'DBMS_MVIEW.REFRESH(' || '''' || V_NAME || '''' || '); BEGIN UPD_DISCO_MV_REFRESH_ORDER_TBL; END;',V_START_DATE,NULL);
    SELECT A.REFRESH_STATUS, A.LAST_REFRESH INTO V_PREV_STATUS, V_NEXT_DATE
    FROM DISCO_MV_REFRESH_ORDER A
    WHERE (I.ORDER_OF_REFRESH - 1) = A.ORDER_OF_REFRESH;
    IF I.ORDER_OF_REFRESH > 1 AND V_PREV_STATUS = 'VALID'
    THEN V_NEXT_DATE := V_NEXT_DATE + (2/86400);
    ELSE V_NEXT_DATE := NULL;
    END IF;
    END LOOP;
    EXCEPTION
    WHEN NO_DATA_FOUND
         THEN
              IF MV_LIST%ISOPEN
                   THEN CLOSE MV_LIST;
              END IF;
    NULL;
    END Disco_Mv_Refresh;
    My problem is that it doesn't appear to be looping to the next job. It worked succesfully on the first job but not the subsequent jobs (or materialized views in this case).... Any ideas?

  • I bought 2 songs from itunes and one plays for 43 seconds and stops and the other places for 1 minutes and 40 seconds and stops

    I bought the song "You" by Chris Young and the song "Yesterday" by the Beatles and they played fine for a period of time.  However one day about 4 months ago, when I would play either song, the song would play normal for an amount of time ( "You" for 1 minute and 42 seconds and "Yesterday" for 29 seconds) and then the song would stop playing on my iPod touch 3rd gen.  When I played the songs on iTunes, it would just go to the next song.  I contacted Apple support through email, and they responded promptly with a reponse and a solution!  The lady helping me accessed my account and made it so that the song "redownload" I guess because thats what happened when I signed on to iTunes and the two songs were loading.  Well I think I heard the songs once or twice and now they are doing it again!  The songs stops at those same times and will not play.  What is the solution?

    - Try a reset. it cures many ill and nothing is lost
    Reset iPod touch:  Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears
    - Does it play in iTunes on the computer?
    - Delete the song and redownload it by:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store
    - Ask iTunes for a redownload.
    How to report an issue with Your iTunes Store purchase

  • I want to sell one of the iPhones that I've purchased and I wanted to know if I sold it, would it void the apple care that I purchased for it?

    I want to sell one of the iPhones that I've purchased and wanted to know if AppleCare would still cover it, of I were to sell it to someone else!

    Apple Care follows the device, not the person that purchased it. As long as the device is registered under the Apple Care, then it stays with the device. The person purchasing the device would get the advantage of Apple Care.

  • Can some one simply answer this question with me going round and round in circles,.,I am in Australia. Do I use the British or US firefox download.

    I am in Australia. Do I use the British or US firefox download.
    I am having extreme difficulty getting a simple answer to this question.
    I just keep getting sent back and forth to different firefox sites for more details, or ask community, go to an answer site etc etc.

    Maybe best to install the British version and install the Australian dictionary.
    *https://addons.mozilla.org/en-US/firefox/addon/english-australian-dictionary/

  • TS3297 I have tried to buy new tunes from the store on a new computer and it is asking me security questions that I don't know the answers to. How can I reset these security questions to ones that I do know the answers to?

    I have tried to buy new tunes from the store on a new computer and it is saying that I have to answer security questions for which I do not have the answers. How can I buy new tunes if I can't answer the security questions please?

    https://discussions.apple.com/message/20480446#20480446

  • HT1311 Someone please help me from Apple "the inaccessible"///i am in Thailand and cannot remembere my favrotie teacher from school...How in the **** can i change my password??? before some one steal s even more???

    DEar Remore Apple....Someone got my password tonight and charged 150 dollars off to Zinga .......I want to change my password . but sioncei cannot remember my favorite teachers name Apple willnot allow me.I am 66 eyars old and cannot reember everything..i need to change my password and dispute those trhee cahrges fro  Jamuary 4 at Itunes store..
    if this highly profitable comapny cannot help m,e , i will have to go to a more accessible store..

    I would first put a freeze on your credit/debit card.

  • Is it possible to start intel mac in target mode from ppc mac ?

    Hello all,
    Is it possible to start intel mac in target mode from ppc mac ? If so does using target mode make ANY change at all to the target disk if user doesn't voluntariliy write stuff to target disk ?
    Thanks in advance !

    Yes, you can, but with some notes. Braby sent some data, I add some other.
    Target Mode has two basic roles:
    1. to turn a mac into an external drive and/or external optical drive (if it has one, until Air era, all had); you may use this way if your internal optical drive is damaged and you wish to use the optical unit of the other mac; or use it as a simple external disk for backup purposes or else.
    2. to boot from a such-booted mac.
    #1 is usable with any two macs disregarding whether they are both PPC, both intel, or combination PPC-intel, as the behavior is like any external disk drive or external optical drive.
    #2 is impossible if you want to boot the other mac, they must be both intel or PPC, as you cannot use an intel-based mac as a boot mac for the other ppc-mac, and vice-versa.
    So said and clarified, you may use, but not if you intend to boot the other one if you wish to use it for various purposes implying boot.

  • Is ist possible to start a vi in a vi sub panel?

    hello,
    is it possible to start a vi with his functionality in a sub panel? or is there another way to do this?
    markus

    I think the answer is yes, it is possible to start a VI within the
    subpanel.  See 'simple.vi' within the examples, or search the
    examples for "subpanel"  You have to use an invoke node to start
    the VI.  See the attached pic of the block diagram.
    Attachments:
    Image1.png ‏19 KB

  • Refurbished iPod touch 3rd gen won't start.  Just got it today to replace my broken one. It freezes at the screen with the apple logo, then flashes off and tries to restart again. Help,

    Refurbished iPod touch 3rd gen won't start.  Just got it today to replace my broken one. It freezes at the screen with the apple logo, then flashes off and tries to restart again. Help!

    I have tried holding the power home button but all that does is turn it off. When I try to start it again it goes into the same loop.

  • Is there a possibility for a one-day-test for "Adobe ExportPDF"

    Hi
    before I order "
    "Adobe ExportPDF"
    I would like to test this service /OCR-Engine.
    Does anybody know how good the OCR is for documents which have been scanned in with a flatbed scanner and tranfered into PDF with 300dpi?
    Does it recognize german documents? Could I test this for one document, before I buy the service for one year?
    Thanks
    Jochen

    Hi Ajlan,
    thank you for your reply.
    Is the Adobe ExportPDF service (engine) equivalent to Adobe Acrobat XI
    pro software?
    Or is it different. I ask especially, if the Adobe ExportPDF service
    give me back a word/spelling checked/corrected PDF or just as in Adobe
    Acrobat XI pro, whereafter I have to do the correction myself.
    Thank you
    best regards
    Jochen
    Am 19.02.2014 04:19, schrieb Ajlan huda:
    >
          Re: Is there a possibility for a one-day-test for "Adobe ExportPDF"
    created by Ajlan huda <http://forums.adobe.com/people/Ajlan+huda> in
    /Acrobat.com/ - View the full discussion
    <http://forums.adobe.com/message/6134491#6134491

  • Issues: extremely slow start up, occasional green fuzzy screen, doesn't always hibernate and overheats

    First off, I should say that I'm not the type of person to shutdown my computer. If anything, I shut it to hiberate. I'm not sure if that's bad pratice or if that's what lead to this over time.. So here's what happens.. Today, I was working away and all of a sudden a fuzzy screen comes up with a little bit of green and then a beeping sound. So I shut it off. This is rare, sometimes the fuzzy screen comes up for a second randomly or when I open my computer from hiberate mode or when I'm just using the computer.
    When I turn my computer on,
    1. sometimes the 'on' button doesn't work and it takes a few tries (however this hasn't happened in the past few weeks. *knock on wood*)
    Once the computer is on the blue screen comes up:
    2. which stays on for anywhere from 5-20 minutes.
    3. Log in appears with the cursor blinking but I actually can't type anything.. It lags behind sometimes another 20 minutes before my password appears and I could log on.
    Checking the message board for similar questions it was recommended that I update the software.
    I've tried to get Mavericks on here but I get an error message when it tries to restart the computer and never does so successfully on its own.
    I've helped it along and was able to attempt at installing it but I waited a least an hour for it to 'find my disks' with no luck I went the disk utility repair route istead of time machine backup which couldn't find my external or anything for that matter.
    The error message I got back was:
    invalid block count It should be 21066078 instead of 21066076. Found corrupt needs to be repaired.
    Any thoughts or advice would be helpful. Thanks in advance. Below is my EtreCheck.
    Hardware Information:
        MacBook Pro (15-inch, Mid 2010)
        MacBook Pro - model: MacBookPro6,2
        1 2.66 GHz Intel Core i7 CPU: 2 cores
        8 GB RAM
    Video Information:
        NVIDIA GeForce GT 330M - VRAM: 512 MB
        Intel HD Graphics - VRAM: 288 MB
    System Software:
        Mac OS X 10.6.8 (10K549) - Uptime: 0 days 2:2:6
    Disk Information:
        Hitachi HTS725050A9A362 disk0 : (465.76 GB)
            (null) (disk0s1) <not mounted>: 200 MB
            Macintosh HD (disk0s2) / [Startup]: 465.44 GB (80.03 GB free)
        MATSHITADVD-R   UJ-898 
    USB Information:
        Apple Internal Memory Card Reader
        Apple Inc. BRCM2070 Hub
            Apple Inc. Bluetooth USB Host Controller
        Apple Inc. Apple Internal Keyboard / Trackpad
        Apple Computer, Inc. IR Receiver
        Apple Inc. Built-in iSight
    FireWire Information:
    Thunderbolt Information:
    Problem System Launch Daemons:
        [System]    org.samba.winbindd.plist 3rd-Party support link
    Launch Daemons:
        [System]    com.adobe.fpsaud.plist 3rd-Party support link
        [System]    com.adobe.SwitchBoard.plist 3rd-Party support link
    Launch Agents:
        [System]    com.adobe.AAM.Updater-1.0.plist 3rd-Party support link
        [System]    com.adobe.CS5ServiceManager.plist 3rd-Party support link
    User Launch Agents:
        [not loaded]    com.adobe.AAM.Updater-1.0.plist 3rd-Party support link
        [not loaded]    com.adobe.ARM.[...].plist 3rd-Party support link
    User Login Items:
        AdobeResourceSynchronizer
        Dropbox
    Internet Plug-ins:
        AdobeAAMDetect: Version: AdobeAAMDetect 1.0.0.0 - SDK 10.6 3rd-Party support link
        FlashPlayer-10.6: Version: 13.0.0.214 - SDK 10.6 3rd-Party support link
        Flip4Mac WMV Plugin: Version: 2.4.4.2 3rd-Party support link
        AdobePDFViewerNPAPI: Version: 10.1.9 3rd-Party support link
        AdobePDFViewer: Version: 10.1.9 3rd-Party support link
        CouponPrinter-FireFox_v2: Version: Version 1.1.9 - SDK 10.5 3rd-Party support link
        Flash Player: Version: 13.0.0.214 - SDK 10.6 3rd-Party support link
        JavaAppletPlugin: Version: 13.9.8 - SDK 10.6 Outdated! Update
        QuickTime Plugin: Version: 7.6.6
        Silverlight: Version: 5.1.20513.0 - SDK 10.6 3rd-Party support link
        iPhotoPhotocast: Version: 7.0 - SDK 10.7
    iTunes Plug-ins:
        Quartz Composer Visualizer: Version: 1.2
    3rd Party Preference Panes:
        Flash Player  3rd-Party support link
        Flip4Mac WMV  3rd-Party support link
    Old Applications:
        None
    Time Machine:
        Time Machine information requires OS X 10.7 "Lion" or later.
    Top Processes by CPU:
             6%    firefox
             5%    EtreCheck
             2%    hidd
             1%    WindowServer
             0%    distnoted
    Top Processes by Memory:
        631 MB    firefox
        164 MB    mds
        74 MB    Mail
        74 MB    Dropbox
        57 MB    plugin-container
    Virtual Memory Information:
        5.33 GB    Free RAM
        1.02 GB    Active RAM
        799 MB    Inactive RAM
        886 MB    Wired RAM
        1.30 GB    Page-ins
        0 B    Page-outs

    Simska,
    regarding the overheating, you can try resetting your MacBook Pro’s System Management Controller.
    Regarding the invalid block count, you should boot from your grey Mac OS X Install DVD which originally came in the box with your MacBook Pro, run Disk Utility from it (via the Utilities menu in the menu bar), and select Repair Disk for your internal disk.
    After your disk is repaired, exit Disk Utility and restart from your internal disk. When you log in, you should uninstall your installed version of iPhoto Photocast — it was written to work with the Lion (Mac OS X 10.7) SDK, but you have Snow Leopard (Mac OS X 10.6.8) installed, so it’s not supported under Snow Leopard. Install in its place an older version of iPhoto Photocast which is compatible with Snow Leopard. You also have an outdated version of Silverlight installed — you can download the most recent version from here.

Maybe you are looking for

  • BPEL Server java.lang.NullPointerException

    I have been getting a java.lang.NullPointerException after I try to add a Database adapter to a BPEL process. I get the exception even after I delete everything I added before I got the exception. Here is the text from the screen that the BPEL Consol

  • TS1538 error code 39 windows

    I have literally followed every link that I could find to fix this problem. I have a code 39 on windows vista, My ipod is picked up just fine with no problems, but when I try to plus in my iphone, first it gets picked up as a digital still camera, th

  • How can i sync the info in my android with my mac book

    How can i transfer or sync the info in my android with my macbook? thanks

  • Gnome 3.16, no clock indicator!

    As you can see, the clock indicator is missing! The weather indicator is working fine though... I installed this system yesterday, and as far as I can remember, the clock has been missing since the first boot. What can I do to fix this?

  • Estimate time to enable all constraints and create all indexes

    Hi, To prepare a project to export/import for a whole database, How can I estimate time required to enable all constraints and create all indexes * Assume one full table scan per one FK constraint * Assume one full table scan plus one sort/merge oper