Found a bug in Flashbuilder 4.5, with code to replicate

I have two classes, which are identical.  We'll call the manufacturer.  The other does not call the constructor.  I think that something may have got corrupted in the process of "renaming" which hides the constructor.  You can see when you rename a class that particlex_woodchip1 to something else, the constructor is not renamed in the "process of change of name.

It's very simplfied code.  Two classes with 2 orders of trace.  It is what it is.

http://www.goodnewsjim.com/General/AdobeConstructorBug.FXP

PS: Fix the shift hits in projects over 20 k of code lines.  It's really hard to write good procedural code in AS3 because the editor has too many processesing between entering letters.  I have a 48 k line file, and there is sometimes 4 second delay between code.  I imagine that the smaller files also have this lag type, but to a lesser extent is not as sensitive.  If you fixed this bug, coders around the world become more Rapids encoders.

Hello

In your project, class ParticleX_Woodchip1 has its constructor misspelled as ParticleX_WoodChip1 (CAPS 'C'). This is why it is not renamed when you renamed the class. Are you referring to this same question?

Tags: Flash Builder

Similar Questions

  • I think I found a bug

    Hello

    I think I found a bug in the new software of gingerbread and I wanted to see if other people know this as well. In the stock text messaging application, when in a conversation, there is a shortcut feature that allows you to call the person you text by pressing the hard menu button then the call button with a small picture of a phone above her. This will display a list of all the phone numbers that you saved for that particular person. The bug I encounter is that instead of list what each number is (work at home, mobile,...) it just says: 'other' for each phone number. So unless you've memorized all the different numbers, you have for each person, it is impossible to say what cell number, work, home etc, which practically makes this potentially useful shortcut feature useless unless you have a single number registered per person. Everyone knows about this bug?

    The only other bugs I've known are:

    1. the phone restarts itself all while listening to music in the stock music app, making it very difficult to listen to music on my droid x, which is one of my main uses for the phone.

    2. the phone restarts itself during phone calls, which can really be a nuisance.

    3. the phone restarts itself at random times.

    4. the phone turn under sometimes after I turn it off.

    Except that I am very satisfied with the new software of gingerbread. I think that if these bugs can be ironed on the droid x will remain one of the best phones android out there even though he is a year old now.

    I wonder if it's a 2.3.3 thing, because it works fine on the Droid 3 and DX2. I'm reports.

    If, instead of using the menu option to call, you press the icon picture of the person you are texting with and select the phone icon, you get properly labeled numbers? My DX works very well using this method.

  • Found the Bug in Spider Solitaire

    I found a bug in Spider Solitaire, on xp64, don't know if it still exists in Windows 7.

    I was a 'Simple' game and removed 7 combinations of Spades before trying to deal with the last set of 10 cards.

    With 7 costumes removed, there were only 3 cards remaining in the game.

    When I tried to cope, I got the dialog box error "You are not allowed to deal with a new line while there are empty slots."

    The problem is that I didn't let enough cards to fill all of the empty boxes, so there is no way to end the game.

    I did some quick calculations, and decided the likelihood of this situation arising from is about 1/100 for a simple game, but much less for average games or difficult.

    Hi Alistair Ward.

    Please report the bug in the website below. This site is a point of connection between you and Microsoft and eventually the entire community. Your feedback helps Microsoft make software and services the best they can be, and you can learn and contribute to exciting projects.

    Microsoft Connect

    http://connect.Microsoft.com/

    Azeez Nadeem-Microsoft support

    [If this post was helpful, please click the button "Vote as helpful" (green triangle). If it can help solve your problem, click on the button 'Propose as answer' or 'mark as answer '. [By proposing / marking a post as answer or useful you help others find the answer more quickly.]

  • bug using dbms_redefinition on table with the altered text index?

    I think I can found a bug when you use DBMS_REDEFINITION on a table with a text index that has been modified using ALTER INDEX index-name REBUILD PARAMETERS (REPLACE...). It seems that DBMS_REDEFINITION does not recognize the syntax with REPLACE and redefining fails. However, if I remove the text index and re-create it with all the parameters set during the initial creation and no ALTER INDEX command, then redo the redefinition, it works correctly. I have provided below a script that reproduces the problem, then use workaround mentioned. I have provided a copy of the script and executing the script separately, so that it can be copied and pasted to reproduce the problem. It is a simplification of a problem which has emerged over the diagnosis of a larger problem presented by someone on another forum, where the objective was to perform a loop on a group of tables that meet certain criteria and change some columns varchar2, nvarchar2 columns of these tables, where there are indexes in full text on the other columns in the tables and indexes have been changed using the syntax above. This seems to be a bug or am I missing something or is at - it an easier solution for the redefinition?

    -version:
    SCOTT@orcl_11gR2> select * from v$version;
    
    BANNER
    --------------------------------------------------------------------------------
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    PL/SQL Release 11.2.0.1.0 - Production
    CORE    11.2.0.1.0      Production
    TNS for 64-bit Windows: Version 11.2.0.1.0 - Production
    NLSRTL Version 11.2.0.1.0 - Production
    
    5 rows selected.
    
    SCOTT@orcl_11gR2>
    -run the script:
    SCOTT@orcl_11gR2> -- table, data, altered text index:
    SCOTT@orcl_11gR2> CREATE TABLE t_test
      2    (col1  NUMBER PRIMARY KEY,
      3       col2  VARCHAR2 (10),
      4       col3  CLOB)
      5  /
    
    Table created.
    
    SCOTT@orcl_11gR2> INSERT INTO t_test VALUES (1, 'A', 'test data')
      2  /
    
    1 row created.
    
    SCOTT@orcl_11gR2> CREATE INDEX i1 ON t_test (col3) INDEXTYPE IS CTXSYS.CONTEXT
      2  /
    
    Index created.
    
    SCOTT@orcl_11gR2> ALTER INDEX i1 REBUILD PARAMETERS ('REPLACE SYNC (ON COMMIT)')
      2  /
    
    Index altered.
    
    SCOTT@orcl_11gR2> SELECT * FROM t_test WHERE CONTAINS (col3, 'test data') > 0
      2  /
    
          COL1 COL2       COL3
    ---------- ---------- ----------
             1 A          test data
    
    1 row selected.
    
    SCOTT@orcl_11gR2> -- redefinition that fails:
    SCOTT@orcl_11gR2> CREATE TABLE t_test_interim
      2    (col1  NUMBER,
      3       col2  NVARCHAR2 (10),
      4       col3  CLOB)
      5  /
    
    Table created.
    
    SCOTT@orcl_11gR2> DECLARE
      2    v_num_errors  NUMBER;
      3  BEGIN
      4    DBMS_REDEFINITION.CAN_REDEF_TABLE
      5        (USER, 'T_TEST', DBMS_REDEFINITION.CONS_USE_PK);
      6    DBMS_REDEFINITION.START_REDEF_TABLE
      7        (USER, 'T_TEST', 'T_TEST_INTERIM',
      8         'COL1 COL1,TO_NCHAR(COL2) COL2,COL3 COL3',
      9          DBMS_REDEFINITION.CONS_USE_PK);
     10    DBMS_REDEFINITION.SYNC_INTERIM_TABLE
     11        (USER, 'T_TEST', 'T_TEST_INTERIM');
     12    DBMS_REDEFINITION.COPY_TABLE_DEPENDENTS
     13        (USER, 'T_TEST', 'T_TEST_INTERIM',
     14         DBMS_REDEFINITION.CONS_ORIG_PARAMS,
     15         TRUE, TRUE, TRUE, FALSE, v_num_errors, TRUE);
     16    DBMS_REDEFINITION.FINISH_REDEF_TABLE
     17        (USER, 'T_TEST', 'T_TEST_INTERIM');
     18  END;
     19  /
    DECLARE
    *
    ERROR at line 1:
    ORA-29855: error occurred in the execution of ODCIINDEXCREATE routine
    ORA-20000: Oracle Text error:
    DRG-11000: invalid keyword REPLACE
    ORA-06512: at "SYS.DBMS_REDEFINITION", line 1364
    ORA-06512: at "SYS.DBMS_REDEFINITION", line 2025
    ORA-06512: at line 12
    
    
    SCOTT@orcl_11gR2> -- clean up the mess:
    SCOTT@orcl_11gR2> DROP MATERIALIZED VIEW t_test_interim
      2  /
    
    Materialized view dropped.
    
    SCOTT@orcl_11gR2> DROP TABLE t_test_interim CASCADE CONSTRAINTS
      2  /
    
    Table dropped.
    
    SCOTT@orcl_11gR2> BEGIN
      2    DBMS_REDEFINITION.ABORT_REDEF_TABLE
      3        (USER, 'T_TEST', 'T_TEST_INTERIM');
      4  END;
      5  /
    
    PL/SQL procedure successfully completed.
    
    SCOTT@orcl_11gR2> -- drop and recreate index with all parameters without altering:
    SCOTT@orcl_11gR2> DROP INDEX I1
      2  /
    
    Index dropped.
    
    SCOTT@orcl_11gR2> CREATE INDEX I1 ON T_TEST (COL3) INDEXTYPE IS CTXSYS.CONTEXT
      2  PARAMETERS ('SYNC (ON COMMIT)')
      3  /
    
    Index created.
    
    SCOTT@orcl_11gR2> -- redo redefinition:
    SCOTT@orcl_11gR2> CREATE TABLE t_test_interim
      2    (col1  NUMBER,
      3       col2  NVARCHAR2 (10),
      4       col3  CLOB)
      5  /
    
    Table created.
    
    SCOTT@orcl_11gR2> DECLARE
      2    v_num_errors  NUMBER;
      3  BEGIN
      4    DBMS_REDEFINITION.CAN_REDEF_TABLE
      5        (USER, 'T_TEST', DBMS_REDEFINITION.CONS_USE_PK);
      6    DBMS_REDEFINITION.START_REDEF_TABLE
      7        (USER, 'T_TEST', 'T_TEST_INTERIM',
      8         'COL1 COL1,TO_NCHAR(COL2) COL2,COL3 COL3',
      9          DBMS_REDEFINITION.CONS_USE_PK);
     10    DBMS_REDEFINITION.SYNC_INTERIM_TABLE
     11        (USER, 'T_TEST', 'T_TEST_INTERIM');
     12    DBMS_REDEFINITION.COPY_TABLE_DEPENDENTS
     13        (USER, 'T_TEST', 'T_TEST_INTERIM',
     14         DBMS_REDEFINITION.CONS_ORIG_PARAMS,
     15         TRUE, TRUE, TRUE, FALSE, v_num_errors, TRUE);
     16    DBMS_REDEFINITION.FINISH_REDEF_TABLE
     17        (USER, 'T_TEST', 'T_TEST_INTERIM');
     18  END;
     19  /
    
    PL/SQL procedure successfully completed.
    
    SCOTT@orcl_11gR2> DROP TABLE t_test_interim CASCADE CONSTRAINTS
      2  /
    
    Table dropped.
    
    SCOTT@orcl_11gR2> -- results:
    SCOTT@orcl_11gR2> DESC t_test
     Name                                      Null?    Type
     ----------------------------------------- -------- ----------------------------
     COL1                                               NUMBER
     COL2                                               NVARCHAR2(10)
     COL3                                               CLOB
    
    SCOTT@orcl_11gR2> COLUMN col3 FORMAT A10
    SCOTT@orcl_11gR2> SELECT * FROM t_test WHERE CONTAINS (col3, 'test data') > 0
      2  /
    
          COL1 COL2       COL3
    ---------- ---------- ----------
             1 A          test data
    
    1 row selected.
    
    SCOTT@orcl_11gR2> -- clean-up:
    SCOTT@orcl_11gR2> DROP TABLE t_test
      2  /
    
    Table dropped.
    
    SCOTT@orcl_11gR2>
    -script:
    -- table, data, altered text index:
    CREATE TABLE t_test
      (col1  NUMBER PRIMARY KEY,
       col2  VARCHAR2 (10),
       col3  CLOB)
    /
    INSERT INTO t_test VALUES (1, 'A', 'test data')
    /
    CREATE INDEX i1 ON t_test (col3) INDEXTYPE IS CTXSYS.CONTEXT
    /
    ALTER INDEX i1 REBUILD PARAMETERS ('REPLACE SYNC (ON COMMIT)')
    /
    SELECT * FROM t_test WHERE CONTAINS (col3, 'test data') > 0
    /
    -- redefinition that fails:
    CREATE TABLE t_test_interim
      (col1  NUMBER,
       col2  NVARCHAR2 (10),
       col3  CLOB)
    /
    DECLARE 
      v_num_errors  NUMBER;
    BEGIN 
      DBMS_REDEFINITION.CAN_REDEF_TABLE
        (USER, 'T_TEST', DBMS_REDEFINITION.CONS_USE_PK);
      DBMS_REDEFINITION.START_REDEF_TABLE
        (USER, 'T_TEST', 'T_TEST_INTERIM',
         'COL1 COL1,TO_NCHAR(COL2) COL2,COL3 COL3',
          DBMS_REDEFINITION.CONS_USE_PK);
      DBMS_REDEFINITION.SYNC_INTERIM_TABLE
        (USER, 'T_TEST', 'T_TEST_INTERIM');
      DBMS_REDEFINITION.COPY_TABLE_DEPENDENTS
        (USER, 'T_TEST', 'T_TEST_INTERIM',
         DBMS_REDEFINITION.CONS_ORIG_PARAMS, 
         TRUE, TRUE, TRUE, FALSE, v_num_errors, TRUE);
      DBMS_REDEFINITION.FINISH_REDEF_TABLE
        (USER, 'T_TEST', 'T_TEST_INTERIM');
    END;
    /
    -- clean up the mess:
    DROP MATERIALIZED VIEW t_test_interim
    /
    DROP TABLE t_test_interim CASCADE CONSTRAINTS
    /
    BEGIN 
      DBMS_REDEFINITION.ABORT_REDEF_TABLE
        (USER, 'T_TEST', 'T_TEST_INTERIM');
    END;
    /
    -- drop and recreate index with all parameters without altering:
    DROP INDEX I1
    /
    CREATE INDEX I1 ON T_TEST (COL3) INDEXTYPE IS CTXSYS.CONTEXT
    PARAMETERS ('SYNC (ON COMMIT)')
    /
    -- redo redefinition:
    CREATE TABLE t_test_interim
      (col1  NUMBER,
       col2  NVARCHAR2 (10),
       col3  CLOB)
    /
    DECLARE 
      v_num_errors  NUMBER;
    BEGIN 
      DBMS_REDEFINITION.CAN_REDEF_TABLE
        (USER, 'T_TEST', DBMS_REDEFINITION.CONS_USE_PK);
      DBMS_REDEFINITION.START_REDEF_TABLE
        (USER, 'T_TEST', 'T_TEST_INTERIM',
         'COL1 COL1,TO_NCHAR(COL2) COL2,COL3 COL3',
          DBMS_REDEFINITION.CONS_USE_PK);
      DBMS_REDEFINITION.SYNC_INTERIM_TABLE
        (USER, 'T_TEST', 'T_TEST_INTERIM');
      DBMS_REDEFINITION.COPY_TABLE_DEPENDENTS
        (USER, 'T_TEST', 'T_TEST_INTERIM',
         DBMS_REDEFINITION.CONS_ORIG_PARAMS, 
         TRUE, TRUE, TRUE, FALSE, v_num_errors, TRUE);
      DBMS_REDEFINITION.FINISH_REDEF_TABLE
        (USER, 'T_TEST', 'T_TEST_INTERIM');
    END;
    /
    DROP TABLE t_test_interim CASCADE CONSTRAINTS
    /
    -- results:
    DESC t_test
    COLUMN col3 FORMAT A10
    SELECT * FROM t_test WHERE CONTAINS (col3, 'test data') > 0
    /
    -- clean-up:
    DROP TABLE t_test
    /

    No real workaround DBMS_REDEFINITION uses function DBMS_METADATA. GET_DDL() and a string of invalid parameter is returned due to known bugs when you use the ALTER INDEX REBUILD with parameter REPLACE; try to avoid changing the index with REPLACE if you export or use DBMS_REDEFINITION for this table/index.

    Note to change the text index metadata, to change the existing class preference, you can use the REPLACE METADATA, IE

    ALTER INDEX i1 REBUILD PARAMETERS ("replace metadata sync (on commit)" ");

    Will not rebuild the index so that your DOF is to rebuild the index

    ALTER INDEX i1 REBUILD PARAMETERS ('REPLACE SYNC (ON COMMIT)")

  • Xbox will not connect to xbox live and said "Uh Oh, seems to have found a bug in the system.

    So I went to a game on my xbox and it froze, I so stop my xbox 360 and turned it. When it was turned on it says not connected to xbox live, so I did the steps and plugged but it got to the last step where it connects to xbox live, and it said unable to connect to live. So I went on the xbox website and I registered and it says "Uh Oh, seems to have found a bug in the system and it tells me I have no friends and it does not display my photo on the site...» It happened once in October, but has not occurred again until now. I need help please to find what's wrong.

    Try Xbox support:
    http://support.Xbox.com/en-us/

  • I found an old vista home basic dvd with a key, how can check whether key works but not install it?

    I found an old vista home basic dvd with a key, how can check whether key works, but not install it? some dvd install can be live boot from themselves too [password required for a direct start?]?

    Hello

    You must install it to see if it is legal to do so.

    There is no public database of product keys.

    See you soon.

  • I get an error message when previewing: "1 WARNING: assets/private/var/folders/hm/sf71s7m90n727jhsls9fgsp80000gn/T/cleaning the start-up/InDesign Snippets / Snippet_30BBDDE25.idms was not exported because it is not found." It might have to do with an MPA

    I get an error message when previewing: "1 WARNING: assets/private/var/folders/hm/sf71s7m90n727jhsls9fgsp80000gn/T/cleaning the start-up/InDesign Snippets / Snippet_30BBDDE25.idms was not exported because it is not found." It might have to do with an image that I created in InDesign and exported an earnings per share, then created a PNG out of it. I hope that's it, it's, it's scare me... Thanks for the ideas.

    Please try to recreate a link to the file or try to check if the assets are actually located in the defined path.

    Thank you

    Sanjit

  • Bug report: URL parameter & p_lang with Session 0 is not stored on 1. call

    Hello

    I think I found a bug.

    My situation is as follows:
    -J' have a public Application APEX divided in 6 different languages.
    -Public Pages are displayed using Session 0 (zero).
    -On Apache I have redirects for my languages. for example, en.mydomain.at redirects to www.mydomain.at/pls/apex/f?p=APP:home:0 & p_lang = en

    On the first call of en.mydomain.at (Cookie WWV_PUBLIC_SESSION_ < appno > does not yet exist) I get correctly redirected to www.mydomain.at/pls/apex/f?p=APP:home:0 & p_lang = en and the application is in English.
    All debug output indicates, that language is passed in English.

    Now, when I change to another page without passage & p_lang = en more he switches back to the default language (in German, in my case).

    The reason seems to be that SESSION_LANG is not defined in APEX_040000.WWV_FLOW_SESSIONS$ to the first call (when the zero session is initialized the first time).

    A second, third,... call to en.mydomain.at (Cookie WWV_PUBLIC_SESSION_ < appno > already exists) defines the SESSION_LANG in APEX_040000.WWV_FLOW_SESSIONS$ immediately and switching to other pages without passage & p_lang = en works well.

    Repcase:
    -Make sure that there is no WWV_PUBLIC_SESSION_4550 Cookie in your browser
    -go to http://apex.oracle.com/pls/apex/f?p=4550:1:0 & p_lang = en--> all appears correctly in french
    -come on in (Sansparametre p_lang) http://apex.oracle.com/pls/apex/f?p=4550:1:0-> page in English
    -
    -New: go to http://apex.oracle.com/pls/apex/f?p=4550:1:0 & p_lang = en--> all appears correctly in french
    -New: go to http://apex.oracle.com/pls/apex/f?p=4550:1:0 (Sansparametre p_lang)-> now, the page is displayed in french

    Any ideas how to 'fix' this without having to use a redirect to the same page internally?

    brgds,
    Peter

    -----
    Blog: http://www.oracle-and-apex.com
    ApexLib: http://apexlib.oracleapex.info
    BuilderPlugin: http://builderplugin.oracleapex.info
    Work: http://www.click-click.at

    Hi Peter,.

    Thanks for reporting this. This seems to be a bug that we can watch for APEX 4.1.

    I'm curious - how do you update the SESSION_LANG in the table of sessions through your 'dirty' work around?

    Joel

  • DataGrid broke with Framework RSL but fine when merged with code

    Hi people,

    I use and AdvancedDataGrid component in my application. I recently changed coupling framework "Merged into code" to "Runtime Shared Library. Unfortunately the datagrid's is more rendered correctly. A number of columns in the grid simply do not fill in again when I go back to the 'Merged' framework it everything works fine? Someone at - it ideas as to why this might be happening?

    Thank you

    Select this option.

    Here is a link that explains the details of Flex and the built-in fonts: http://blogs.adobe.com/aharui/2010/03/flex_and_embedded_fonts.html.

    Controls in the Flex Framework have been changed to use embedded fonts when using the RSL. As you have found, there is a bug in Flex 3.4 with AdvancedDataGrid. I don't know if the bug has been fixed or not. If you write please up a bug in JIRA. Thank you.

    -Darrell

  • Blue screen on the guest operating system with code BUGCODE_USB_DRIVER when I connect an iPod

    Hello

    I use VMware server 2.0 (build 122589) on Windows VISTA 32 bit. The guest operating system is Windows XP SP3.

    When I connect an iPod Touch on the guest computer, after a few seconds, there is any time a blue screen Windows with code BUGCODE_USB_DRIVER. I have connected 2 different digital cameras and the crash does not add.

    Technical information:

    STOP: 0X000000FE (0X00000005, 0X8228F0E0, 0 X 80867112, 0X822FFF70)

    Does someone have an idea?

    Thank you

    Stop the prompt then proceed as directed by the attached screenshot with the VM highlighted in the left pane.

    ---

    If you have found this device or any other answer useful please consider the use of buttons useful or Correct to award points.

  • Help!  Get pop-ups with CODE of ERROR: sec_error_X1X510_A

    I have an iMAC end of 2012, 3.4 GHz Intel Core i7, 16 GB 1600 MHz DDR3. NVIDIA GeForce GTX 680MX 2048 MB, El Capitan iOS

    When you use Safari, Google home page, I type a domain and it goes to what I believe is a pop-up fake Apple Support with CODE of ERROR: sec_error_X1X510_A.

    Need help solving this. THX

    You have probably installed some adware. Please post a report of EtreCheckof your system. We then look for obvious problems. Please click on the link, download the application and run the report. Once you have the report, please copy and paste into your response to this post.

    If you would like more information on what is EtreCheck, just click on the link and you will find a description of the application.

  • reset the BIOS on HP g62, when I put in three wrong password I just with code 55530371

    reset the BIOS on HP g62, when I put in three wrong password I just with code 55530371.  Is no longer under warranty... need help!

    Try to beep.

    40498977

    American "QWERTY" keyboard only.

    I must inform you that these services are not endorsed by HP, and that HP is not responsible for any damages that may occur to your system using these services. Please be aware that you do so at your own risk.

  • I have a new computer with vista home, I also have 20 updates failed with code 80072EFD. I tried everything I can think of others then do a full restore. Help.__Thanks, __Wally

    I have 20 windows updates failed on my new computer with code 80072EFD and tried everything I know. Its still new with few programs on it so I could do another full system restore if I have to. I also have a free windows 7 for this computer that is always on its way. If I fix this now I will do all that again?
    Wally

    You may encounter temporary connection related errors when you use Windows Update or Microsoft Update to install updates
    http://support.Microsoft.com/kb/836941

    Windows Update error 80072efd
    http://windowshelp.Microsoft.com/Windows/en-us/help/93b6ab71-8B21-4B50-B40E-abb80eba29271033.mspx

    I guess you're running Vista.

    As for your 2nd question about the updates of Windows - Win 7 If you run Norton, you might have a problem. It can accept updates for Vista, but when you upgrade to Windows 7 it does not updates allow.

    TaurArian [MVP] 2005-2010 - Update Services

  • Last update of security to explore failed with code C 8007371

    Original title:

    8007371c

    Last update of security to explore failed with code 8007371 c. A ran Microsift Fixit. Still having the same problem. What to do next? Thank you!

    Hello

    1. What is the description of the software update (KB number)?
    2. Are what "Microsoft Fixit" you referring?

    You can try the steps from the following link and check if it works:

    Problems with installing updates

    http://Windows.Microsoft.com/en-us/Windows-Vista/troubleshoot-problems-with-installing-updates

    Let us know if it helps!

  • Missing or damaged DVD with code 39 drive

    PC: HP Pavilion Dv5 1135e

    Windows Vista 32 bit
    I have a problem on my laptop dvd player. I have received the notice that it is missing or damaged with code 39.  I checked the Device Manager and there was a yellow interjection on ram dvd notification.  Could you help me how to activate my DVD drive again?

    Your CD/DVD drive is missing or is not recognized by Windows or other programs:

    http://support.Microsoft.com/kb/982116

    Your CD or DVD drive cannot read or write media - Fix It:
    http://support.Microsoft.com/mats/cd_dvd_drive_problems

Maybe you are looking for