Missing component, and a symbol

I can't dl quicktime files these days, all there is is just this symbol http://img367.imageshack.us/my.php?image=symbol4xw.jpg
and nothing happens. IT say's I'm missing a component, but I don't know what. I uninstalled and re-installed, still the same thing. I can play quicktime movies I saved a while back, but now I can't get anything off the net. Even when I do scouting with my browser, I see that symbol icon in places. In case the link above doesn't show what it looks like, it looks like a film strip cell, with a tear in it, and the quick time Q is in the center. Can someone please tell me what I can do?
again, I can't dl off websites, and I have the version 6 of quicktime, which I already payed for earlier this year.

OK... totally confused now. Not you, QT. Step by step:
1) If I understood your instructions correctly, I downloaded 7.0 version of QT and installed. I had tried this previously, but didn't realize how long it took to download, and previously quit before it was loaded I think. This time, I let it finish. Took a while but finished without errors.
2) Attempted to go to the Trailer secion in Apple Movies and view some trailers. Got this message...
The QuickTime Plug-in requires the QuickTime System extension version 5 or later (?????... thought I had 7.0????)
3) Then went back to your instructions and opened QT, and OPEN URL, and pasted in the link you provided. It ran fine.???????
I am soooo.... confused?????
Thanks for your patience... as I'm sure it's something stupid on my part.

Similar Messages

  • Missing prototype and Undefined Symbol errors

    So, I am using an Opal Keyy XEM3005 board.
    Depending on the documentation I read, this board has a native ANSI C interface with a C++ wrapper.
    In their forums, they say to rename the ".cpp" file to "c", and then go forward with calling the default constructor & keep track of the pointer.  Their functions are all in an externally loadable DLL.
    Well and good.
    Their API documentatin is available here:  http://www.opalkelly.com/library/FrontPanelAPI/
    I have written a REALLY simple app to ease my way in - it does nothing more than allow the user to throw a switch, and when this happens, it goes off to connect to the board:
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    #include <cvirte.h>
    #include <userint.h>
    #include "Try1.h"
    #include "XEM.h"
    #define _WIN32_WINNT 0x0501
    //#define _WIN32
    #include <windows.h>
    static int panelHandle;
    static okFrontPanel_HANDLE    XEM_Device;
    int __stdcall WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance,
    LPSTR lpszCmdLine, int nCmdShow)
    if (InitCVIRTE (hInstance, 0, 0) == 0)
    return -1;    /* out of memory */
    if ((panelHandle = LoadPanel (0, "Try1.uir", PANEL)) < 0)
            return -1;
        DisplayPanel (panelHandle);
        RunUserInterface ();
        DiscardPanel (panelHandle);
        return 0;
    int CVICALLBACK Connect (int panel, int control, int event,
            void *callbackData, int eventData1, int eventData2)
        int    Value = 0;
        switch (event)
            case EVENT_COMMIT:
                GetCtrlVal(PANEL, PANEL_CONNECT_SWITCH, &Value);
                SetCtrlVal(PANEL, PANEL_CONNECT_LED, Value);
                if( Value )
                    XEM_Connect(XEM_Device);
                else
                    XEM_Disconnect(XEM_Device);
                break;
        return 0;
    int CVICALLBACK Quit (int panel, int control, int event,
            void *callbackData, int eventData1, int eventData2)
        switch (event)
            case EVENT_COMMIT:
                QuitUserInterface (0);
                break;
        return 0;
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    This, of course, works fine by itself (with empty _Connect() and _Disconnect() functions)
    I then started working with the XEM_Connect function.
    The first step is to run their LoadDLL function as such:
    int XEM_Connect ( okFrontPanel_HANDLE    XEM_Device )
        int    NoDevices = 0;    //    Number of devices attached to the PC
        //    Load the DLL (?)
        // Load the FrontPanel DLL
        if (FALSE == okFrontPanelDLL_LoadLib(NULL))
            printf("Could not load FrontPanel DLL\n");
            exit(-1);
        return XEM_SUCCESS;
    And this would compile and run just fine.
    Now, when I added the functions to start trying to get info about the device, I started getting "missing prototype" errors.
    int XEM_Connect ( okFrontPanel_HANDLE    XEM_Device )
        int    NoDevices = 0;    //    Number of devices attached to the PC
        //    Load the DLL (?)
        // Load the FrontPanel DLL
        if (FALSE == okFrontPanelDLL_LoadLib(NULL))
            printf("Could not load FrontPanel DLL\n");
            exit(-1);
        //    Find out how many devices are attached
        XEM_Device = okFrontPanel_Construct(  );
    //    XEM_Device = okCFrontPanel( void );
    //    NoDevices = GetDeviceCount( );
        printf("%d OK devices attached\n", NoDevices);
        //    Call the contructor?    
    //    okCFrontPanel ();
        return XEM_SUCCESS;
    Now, I searched the forums and found the bits about adding #define _WIN32_WINNT 0x0501 prior to inclusion of windows.h.  Did that.  No joy.
    Then I searched some more and found the bit about changing the build options to uncheck the "prototype required" flag.
    Done.
    This seemed to work at first (the above code could be built with no errors, and appeared to run).
    So I thought maybe I had it, and added the next line, so:
    int XEM_Connect ( okFrontPanel_HANDLE    XEM_Device )
        int    NoDevices = 0;    //    Number of devices attached to the PC
        //    Load the DLL (?)
        // Load the FrontPanel DLL
        if (FALSE == okFrontPanelDLL_LoadLib(NULL))
            printf("Could not load FrontPanel DLL\n");
            exit(-1);
        //    Find out how many devices are attached
        XEM_Device = okFrontPanel_Construct(  );
        OpenBySerial( XEM_Device, "UaLgzvVpBJ" );
    //    XEM_Device = okCFrontPanel( void );
    //    NoDevices = GetDeviceCount( );
        printf("%d OK devices attached\n", NoDevices);
        //    Call the contructor?    
    //    okCFrontPanel ();
        return XEM_SUCCESS;
    Now it doesn't complain about no prototypes (duh), but instead I get linker errors:
        Undefined symbol '_OpenBySerial@0' referenced in "XEM.c".
    So, dredging through the .h and .c files, I found a couple of things:
    in the okFrontPanel.c file I found the following:
    okDLLEXPORT ok_ErrorCode DLL_ENTRY
    okFrontPanel_OpenBySerial(okFrontPanel_HANDLE hnd, const char *serial)
        if (_okFrontPanel_OpenBySerial)
    ;  return((*_okFrontPanel_OpenBySerial)(hnd, serial));
        return(ok_UnsupportedFeature);
    In the okFrontPanel.h file I found:
    and also:
    okDLLEXPORT ok_ErrorCode DLL_ENTRY okFrontPanel_OpenBySerial(okFrontPanel_HANDLE hnd, const char *serial);
    So, I see them in the .h & .c files, but the linker is bombing out.
    I smell a problem with actual code to link being in the DLL...  How do I resolve this, any ideas?  Or am I doing something so stupidly (and obviously) wrong that I'm being blinded to it?

    Hi tomii,
    My suspicion is that these issues are due to using a C++ dll in a C environment. There are inherent challenges with performing such an operation as you have to make sure all your parameters and settings are correct.
    I also could not find the documentation that the Opal Kelly dll is ANSI C but it sounds like you can use this in C with some reconfiguration. I would recommend using their forums to get more information on what steps need to take place to get things working in ANSI C.
    From the information you provided, I did find some resources on the missing prototype error and undefined symbol issue with the linker.
    For the missing prototype I found a thread of someone actually using LabWindows and seeing this compiler error you may want to look at
    http://bytes.com/topic/c/answers/695019-missing-prototype
    I found a few cases where using a function definition of int func(void) removes such issue when int func() does not.
    Another link I found that may be worth a look can be found at http://www.parashift.com/c++-faq-lite/mixing-c-and-cpp.html
    It gives some good pointers to mixing C and C++ code. Some of it may be applicible in your case.
    And, a resource for your undefined symbol linking issue.
    http://www.cprogramming.com/tutorial/compiler_linker_errors.html
    Hopefully these resources will give some context for getting things compiling and working with your dll.
    Good luck!
    James W.
    Applications Engineer
    National Instruments

  • AE CS5 says missing component and refuses to fireup

    after effects could not start because a required component could not be found. this may be because of a damaged installation or unsupported operating system. Please consult the minimum requiremtns of re install After Effects. (998)
    thats the error message i get.
    i tried uninstalling AE and reinstalling. (i tried that several times)
    then i used the adobe support advisor, which directed me to a page that suggested me to uninstall and delete the adobe folders and reinstall. i uninstalled the entire production premium package deleted the "adobe" folder from my program files folder and re-installed. this time it failed to install flash catalyst.
    but rest of the applications run fine.
    just AE wont run! this is the primary application i am using.
    any help would be much appreciated.
    PS:
    i am running this in windows 7
    and on a dell precision workstation.
    thanks
    manojit

    hi everyone,
    i reinstalled everything from scratch. windows and the whole set up. (deleted my system disc partition and recreated it before installing windows) i still have the same error message. and my other packages from the rest of the production premium is working fine.
    any help would be appreciated.
    thanks
    manojit

  • Missing Component in Dreamweaver Trial Install?

    I was hoping someone could shed some light on an issue I am having with a Dreamweaver trial I am evaluating.  I downloaded and installed CS4 trial the other day with no issues.  Then my computer crashed and windows automatically did a restore.  When my computer came back up, Dreamweaver was not there as I probably had not rebooted since I was initially trying it.  Now, I download the trial again and get some sort of "missing component" and Dreamweaver doesnt install fully and therefore doesnt work.  Thoughts?

    Unless the uninstall option appears in the installed programs list, you may possibly have to delete the program manually, run the cs4 clean-up script then reinstall Dreamweaver, as your reg entries etc will be corrupted for the installation.
    See - http://kb2.adobe.com/cps/403/kb403995.html
    PZ

  • Add component and Delete Operation in Process order Using COR2

    Hello,
    I need to update any process order (Add components in it and delete some operations of it) on the save of the process order.
    Transaction for change PO: COR2.
    I have found a badi to change in process order (WORKORDER_UPDATE) Method: BEFORE_UPDATE.
    But this badi has all the parameters as Importing. Hence we can not change them.
    If we use field symbols in this badi to change the values,will it make any other issues?
    I have also identified a user exit EXIT_SAPLCOBT_001 but this exit is called very late in the processing, and you cannot change data into that user exit ...check Note (86553 - Documentation on user exits).
    Kindly post your valuable comments and answers.
    Thanks in advance.
    Edited by: Nitin Nyati on Sep 1, 2010 1:09 PM

    Hi ,
    Possibility  , in C202 , user may have changes the BOM first and re-assign the phase  but in process order level Read PP master did not call
    Another possibility manually change the process order component and assign this in Phase in COR2 .Please check  whether it has been added manually in order level . 
    Regards
    JH

  • Missing component to access (read) a PDF file Adobe reader 8

    When I try to open a PDF file it says there are some missing components to complete the operation and it sends me to the Adobe Web page (Adobe Acrobat plug in Finder) I already asked to the author of the file and followed his installation instructions but the problem remains. If I try to open it in some other computer the error message specifies the component filter/MBAS:ash is missing.

    I am getting the same message, "Filter/MBAS:Ash:", that you posted on Adobeforums.com. Did you find out where to get the missing component? If so, I would appreciate your help.
    Norm

  • "Missing component" messages in the installation logs

    I installed Oracle Application Server 10.1.3 on Windows, and I found some strange entries in the installActionsxxxxx.log files:
    "# Not all the dependencies for the component Oracle HTTP Server 10.1.3.0.0 could be found. Missing component oracle.bc4j 10.1.2.0.0.
    # Not all the dependencies for the component Oracle HTTP Server 10.1.3.0.0 could be found. Missing component oracle.bc4j.oem 10.1.2.0.0.
    # Not all the dependencies for the component Oracle HTTP Server 10.1.3.0.0 could be found. Missing component oracle.soap.srv 2.2.0.0.2a.
    # Not all the dependencies for the component Oracle HTTP Server 10.1.3.0.0 could be found. Missing component oracle.apache.ojsp 10.1.2.0.0.
    # Not all the dependencies for the component Oracle HTTP Server 10.1.3.0.0 could be found. Missing component oracle.apache.ejb 9.0.1.0.1."...
    This goes on for several pages. I still had the Oracle Application Server 10.1.2 installation packages on my computer, and I found out that several of the missing packages actually belong to 10.1.2, and several of them are earlier than 10.1.2.
    My questions: is it a problem at all that these components are missing, or shall I ignore these log entries? If this is a problem, how to fix it?
    Best Regards,
    Gabor

    Hi Gabor,
    You can ignor these log entries. (There is a bug logged. The installer team is looking for a good way to surpress these messages.)
    Regards,
    Mathias

  • Because of missing component (MSVCR80.dll). What to do?

    Have had itunes on computer for several months.  Tried to install latest version. Installer indicated was successful.  Attempted to open and received error message that itunes would not open because of missing component (MSVCR80.dll).  What do I need to do and how? 

    Click here and follow the instructions. You may need to completely remove and reinstall iTunes and all related components, or run the process multiple times; this won't normally affect its library, but that should be backed up anyway.
    (99699)

  • ComboBox and button symbol interaction

    (Sorry-- I had this posted in ActionScript as well -- not
    really an AS issue...)
    I thought it would be easier for folks if they didn't have to
    create this from scratch:
    Here is the
    Sample
    SWF
    and the
    Souce
    FLA
    Greetings --
    I traced back a bug that I was having to its most basic level
    and was surprised that it happens with only a ComboBox component
    and a button symbol... I traced it back so far that it got rid of
    all of my ActionScript and was left with only these two interface
    elements:
    Set-up: Create a new Flash document, ActionScript 2 / Flash
    8. Drag in a combobox component and add a label. Create a new
    button symbol and define up, over, down and hit states and drag
    this in as well...
    When you try test this movie, you get strange behavior...
    Give the button a few clicks to see that it is working properly.
    Then, click on the combobox to open it and then go back to the
    button. The button will work the first time tried, but will not
    work properly with subsequent attempts. It seems that the states of
    the button are getting confused after the combobox is used?
    (help!?)
    Could there be a work-around to this? Thank you in advance
    for you assistance with this issue...!

    I have Flash Player 9 (9,0,115,0) on my Mac, and am getting
    the same behavior on Windows XP...
    Perhaps try not moving the mouse between subsequent clicks
    will make it more apparent... I select something from the combobox.
    Then, the first click on the button works properly... but when you
    release the button (and don't move the mouse) it returns to the "up
    state" (not "over state"). Additional clicks don't respond with a
    "down state"... it just flashes the "over state" momentarily.
    It's causing me troubles because my interface asks users to
    first select from a combobox to navigate and then they can click to
    subsequent items with a button: next, next, next... to page through
    the selection. But this strange interaction is hanging up the next
    button on the second click (it never gets the down state).
    Thanks for checking it out... I sure would appreciate any
    thoughts on the matter...

  • Error: Missing Component

    Hi,
    I'm doing the cross component navigation from the DC A to DC B. I imported DC A into the DC B as "Used WDP Components" and embedded the view of DC A. Build and deployed and everything works fine.
    Then i shut down my PC and launch my NWDS, at WDP Used Component which i inserted DC B, it's now having the <Error: Missing Component>. I'm sure i didnt change anything since then.
    When i try to "Edit Component Usage" and choose the DCA again. An error prompted as below:
    Plgin name: Web Dynpro Project Browser
    Plugin ID: com.sap.ide.webdynpro.projectbrowser
    Class: com.sap.ide.webdynpro.projectbrowser.actions.PBEditComponentUsageAction$1
    method: runInternal
    Message: Exception occured
    Exception: java.lang.NullPointerException: null
    How to solve it? Thanks.
    - julius
    Message was edited by:
            julius

    hi
    Remove the DC A from used DCs build and add again to DC B. If not check out DC A, add the Public part again, check in, activate, resync and then add DC A as used DC to DC B. It must work. Hope it helps.
    regards
    LNV

  • Component and hdmi issues

    So I wanted to see if I could send the ATV signal from both component and hdmi outputs. Currently, I am using HDMI only to my Pioneer Pro 1120 at the 720 setting, but I wanted to send the signal to another tv (with component only) as well.
    I could not output both signals, but when I went to output only the component signal, I could not get a signal (even on the Pioneer which auto adjusts the video resolution based on the input). Do I need to reboot when changing the AV output? I have tried the component on two different tv's. Do I have a bad component output on my ATV or am I missing a setting step somewhere?
    Thanks,
    Chris

    Yes. I just had mine replaced today and it works nice!

  • Dynamic Work Area and field symbol

    Hi All,
    I'm have a big internal table like this
    data: begin of data occurs 0,
    Field01,
    Field02,
    Field03,
    *bucket 1
    Field04,
    Field05,
    Field06,
    *bucket 2
    Field04,
    Field05,
    Field06,
    *bucket 3
    Field04,
    Field05,
    Field06,
    Field 1, 2 3 will be the same for pernr, first last name.
    Field 4, 5, 6 are the same format but different numbers (or values ) in different buckets.
    Each bucket can be shown (or not) based on the condition of a person, for example if that person live in 2 states, it will show 2 bucket with 2 address info inside each.
    I will run this under get pernr to sort out each person who have many address or not.
    Can I use dynamic work area and field symbol here? if I can, how?
    Really appreciate your help with points...

    You can use the ASSIGN COMPONENT ... and than APPEND the work area to the table.
    Check out this sample program:
    REPORT  ZTEST_NP.
    DATA: BEGIN OF ITAB OCCURS 0,
          F1    TYPE I,
          F2    TYPE I,
          F3    TYPE I,
          END   OF ITAB.
    DATA: WA_ITAB LIKE ITAB.
    DATA: L_CNT TYPE I.
    FIELD-SYMBOLS: <F_FLD> TYPE ANY.
    DO 10 TIMES.    " I want 10 reocrds
      CLEAR L_CNT.
      DO 3 TIMES.   " I have 3 fields
        L_CNT = L_CNT + 1.
        ASSIGN COMPONENT L_CNT OF STRUCTURE WA_ITAB TO <F_FLD>.
        <F_FLD> = L_CNT.
      ENDDO.
      APPEND WA_ITAB TO ITAB.
      CLEAR  ITAB.
    ENDDO.
    LOOP AT ITAB INTO WA_ITAB.
      WRITE: / WA_ITAB-F1,
               WA_ITAB-F2,
               WA_ITAB-F3.
    ENDLOOP.
    Regards,
    Naimesh Patel

  • OSP (Oracle Software Packager): 'Missing Component' when Verify Stage Area

    I'm trying make a stage area for "Oracle Net 9.0.1.2.0". ( I haven´t find the way to Install alone this product with the CD's of Oracle 9iDS Release 2 ).
    When I import Oracle Net 9.0.1.2.0 ( with the option "Import dependee" selected ) and make the Stage it´s gone right, but when I verify the Stage Area always show this errors;
    Error: Not all the dependencies for the component Assistant Common Files
    9.0.2.0.0 are found. Missing Component oracle.swd.jre 1.1.8.1.0.
    Error: Not all the dependencies for the component Assistant Common Files
    9.0.2.0.0 are found. Missing Compoent oracle.bali.kodiak 1.2.1.0.0.
    Warning: Not all the dependencies for the component Assistant Common Files
    9.0.2.0.0 are found. Missing Component oracle.jdk 1.3.1.0.0a.
    I find this directories from "oracle." components in CD of Oracle 9iDS, but if I selected manually its, error that it´s show is;
    The file specified is either corrupt or not a valid cmp file.
    How and where I can find this components?
    Thanks,
    Raúl ABAD.

    You have to create UP2DATE_RPM yourself. The, for your repository os, correct rpm can be downloaded from https://linux.oracle.com/switch.html f.i. to /tmp
    zip up2date_comp.zip up2date-5.10.1-40.8.el5.x86_64.rpm (and maybe also the correct gnome rpm if it's not default installed).
    Now this zip-file can be uploaded into the Software Library as described in OEM Advanced Configuration:
    The Software Library by default contains the latest version of up2date for Red Hat Enterprise Linux 4, i386 hardware platform. If the Staging Server is of a different release version or architecture (use uname -p on your system to identify the architecture), download the appropriate version of "up2date" and "up2date-gnome" packages from the link http://linux.oracle.com/switch.html. Compress these two packages by using Zip utility into a file named "up2date_comp.zip" and replace it in the Software Library location, "Components > Oracle Components > Stage Server Up2date Component > 10.2.0.4.0 > Linux > UP2DATE_RPM".
    The way I uploaded the zip file: Deployments > Provisioning > Components > Oracle Components > Stage Server Up2date Component > 10.2.0.4.0 > Linux > select UP2DATE_RPM, Edit, Upload file, Upload from Agent Machine. Select Agent and go to the directory /tmp and select up2date-comp.zip.
    Maybe this not completely up-to-date anymore, but I hope it helps you.
    Eric

  • Missing Component in 8.02

    I just started getting a message that iTunes cannot open due to a missing component (-42404).
    This is a mystery to me.
    I did an arhive and install recently, but that should not affect my apps, should it?

    Yes I can help! we have an answer!
    I did a search for 42404, and that last answer is what worked.
    1) where my defaulted humanoid lack of skill was in That
    A) I Did Not double click the actual 9.02 PKG, and go through the 'normal' permissions of installation earlier. Now I would be able to (get radio, (download a disk and play( etc.
    But to enter into the store to retrieve my wish list did not happen. I am listening to Final Fantasy 7 as we speak!
    now my sequence000
    1)finder/ find library
    2) removed all Itunes extra 9.02 folders not needed ( I only had one hand held disk loaded in music library, I kept that at location, and moved old 9.02 to trash and secured empty trash- (15-20 minutes)
    3) restarted OS 10.411( Tiger)
    4)reinstalled I tunes 9.02
    5) double clicked on PKG
    6) returned to I Tunes, (store) went to wish list, and began a happy lifestyle again.
    Johnny

  • New Computer, CS4: Fatal Error Missing Component

    Hi,
    I have a new Macbook Pro. I transfered all my programs, including Photoshop CS4 extended, from my old Macbook to the new one. Whenever I try working on...ANYTHING, I get the following message, and then CS4 closes:
    Fatal Error  Missing Component
    /Library/Application Support/Adobe/Adobe Version Cue CS4/Client/4.0.0/VersionCue.framework
    Help!!

    PapaRoll wrote:
    I tried, but keep getting this:
    HTTP ERROR: 404 /support/downloads/dlm/main.jsp
    RequestURI=/support/downloads/dlm/main.jsp
    You must precisely follow the instructions on the download page, otherwise you'll get a 404 instead of access to the files. The download page has countless comments from people who don't follow instructions and get a 404.

Maybe you are looking for