Error in exception can't figure out why?

hi
iam new to oracle ..can't figure out the error in this code..
set serveroutput on
declare
e_m exception;
pragma_exception_init(e_m,-1400);
begin
insert into dept_dup(dno) values(nULL);
exception
when e then
raise_application_error(-20000,'exception e');
end;
thank u
rajiv

This compiles OK:
SQL>
SQL> set serveroutput on
SQL>
SQL> drop table dept_dup;
Table dropped.
SQL>
SQL> create table dept_dup(dno number);
Table created.
SQL>
SQL> declare
  2  e_m exception;
  3  pragma exception_init(e_m,-1400);
  4  begin
  5  insert into dept_dup(dno) values(NULL);
  6  exception
  7  when e_m then
  8  raise_application_error(-20000,'exception em');
  9  end;
10  /
PL/SQL procedure successfully completed.
SQL> show errors
No errors.
SQL>
SQL> exitReading the PL/SQL docs can also help: http://download-uk.oracle.com/docs/cd/B19306_01/appdev.102/b14261/errors.htm#sthref2000
Message was edited by:
Pierre Forstmann

Similar Messages

  • It compiles but it errors and I can't figure out why and this is my final!

    Hey there,
    I am taking a class in Java and its finals time and I have this program due and i am just running into road blocks. I really need some help! It compiles and what not but when you are running the program and you tell it to enter the value of the type of work that was done, it hangs then if you push enter, you get this;
    ===========================
    CIS2110 Project 4
    Banach Information Technology Solutions
    Weekly Reports
    By Alicia Schuster
    May 7, 2008
    =============================
    Input The rate for iHours:50
    Input The rate for dHours:80
    Input The rate for aHours:100
    Please enter the value of the day1
    Input the value for cust:222
    Input the value for type:1
    java.lang.NumberFormatException: For input string: ""
    at java.lang.NumberFormatException.forInputString(NumberFormatException.java:48)
    at java.lang.Integer.parseInt(Integer.java:489)
    at java.lang.Integer.parseInt(Integer.java:518)
    at Pro4.inJob(Pro4Driver.java:172)
    at Pro4.procJob(Pro4Driver.java:145)
    at Pro4.procday(Pro4Driver.java:100)
    at Pro4.appMain(Pro4Driver.java:61)
    at Pro4Driver.main(Pro4Driver.java:25)
    Here is my code below, what do i need to change? I am about to pull my hair out. SOMEONE PLEASE HELP!
    //Title: Project #4 part c
    //Version:
    //Copyright: Copyright (c) 2008
    //Author: Alicia
    //Company: Your Company
    //Description: Your description
    // Preprocessor directive
    //import java.io.IOException;
    import java.io.BufferedReader;
    import java.text.DecimalFormat;
    import java.io.*;
    public class Pro4Driver
              public static void main(String [] args) throws IOException
                   {     Pro4 app;
                        app = new Pro4();
                        app.appMain();
    class Pro4
         //Instance (global) data declarations
              float iHours;
              float dHours;
              float aHours;
              float totCharge;
              float totOverCharge;
              float hiCharge;
              float iRate;
              float dRate;
              float aRate;
              int day;
              int hiDay;
              int hiType;
              float dayTotCharge;
              float dayTotOverCharge;
              int cust;
              int type;
              float hours;
              float overCharge;
              float servCharge;
              String numString;
              BufferedReader stdin;
              float num;
              DecimalFormat f6 = new DecimalFormat("$#,###.##");
              DecimalFormat f5 = new DecimalFormat("#,###.##");
         public void appMain() throws IOException
              stdin= new BufferedReader(new InputStreamReader(System.in));
              wkinit();
              outhead();
              inrates();
              procday();
              while (day != 0)
              {     wkout();
              return;
         public void wkinit() throws IOException
         {      iHours = dHours = aHours = 0f;
              totCharge = totOverCharge = hiCharge = 0f;
              return;
         public void outhead() throws IOException
         {     System.out.println("\n===========================");
              System.out.println(" CIS2110 Project 4");
              System.out.println(" Banach Information Technology Solutions");
              System.out.println("Weekly Reports");
              System.out.println(" By Alicia Schuster");
              System.out.println(" May 7, 2008");
              System.out.println("=============================");     
              return;
         public void inrates()throws IOException
              System.out.print("Input The rate for iHours:");
              numString = stdin.readLine();
              iHours = Float.parseFloat(numString);
              System.out.print("Input The rate for dHours:");
              numString = stdin.readLine();
              dHours = Float.parseFloat(numString);
              System.out.print("Input The rate for aHours:");
              numString = stdin.readLine();
              aHours = Float.parseFloat(numString);
              return;
         public void procday()throws IOException
         {     dayInit();
              inDay();
              if (day != 0);
                   procJob();
                   while (cust != 0)
                   outDay();
              return;
         public void wkout() throws IOException
         {     stdin = new BufferedReader (new InputStreamReader(System.in));
              num = (float)Math.PI;
              System.out.println(" The Value of totCharge is:"+
    f6.format(totCharge));
              System.out.println("The Value of totOverCharge is:" +
    (totOverCharge));
              System.out.println("The Value hiCharge is:" + f6.format
    (hiCharge));
              System.out.println("The Value Of hiDay is:" + hiDay);
              System.out.println("The Value of hiType is:" + hiType);
              System.out.println("The Value of iHours is:"+ f6.format(iHours));
              System.out.println("The Value of dHours is:"+ f6.format
    (dHours));
              System.out.println("The value of aHours is:"+ f6.format
    (aHours));
              return;
         public void dayInit()
         {      dayTotCharge = dayTotOverCharge = 0;
              return;
         public void inDay()throws IOException
              System.out.print("Please enter the value of the day");
              numString = stdin.readLine();
              day = Integer.parseInt(numString);
         public void procJob() throws IOException
         {     inCust();
              if (cust != 0);
                   inJob();
                   updateCharges();
                   updateSums();
                   updateHi();
                   outJob();
              return;
         public void outDay()
         {     System.out.println("The value of the day is:" + day);
              System.out.println("The value of dayTotCharge is:"+
    f6.format(dayTotCharge));
              System.out.println("The Value of dayTotOverCharge is:"+
    f6.format(dayTotCharge));
              return;
         public void inCust() throws IOException
         {     System.out.print("Input the value for cust:");
              cust = Integer.parseInt(stdin.readLine());
              return;
         public void inJob()throws IOException
         {     System.out.print("Input the type of work they did:");
              numString = stdin.readLine();
              type = Integer.parseInt(stdin.readLine());
              System.out.print("Input the value for hours :");
              numString = stdin.readLine();
              hours = Float.parseFloat(numString);
              return;
         public void updateCharges()
         {     float overCharge = 0f;
              if (type == iHours)
                   iHours = iHours + hours;
                   servCharge = hours * iRate;
                   if (day > 5)
                        overCharge = (float).5 * servCharge;
                   if (hours > 40)
                        overCharge = overCharge + .5f *(hours -
    40)*iRate;
                   servCharge = servCharge + overCharge;
                   else
                        if (type == dHours)
                   dHours = dHours + hours;
                   servCharge = hours * dRate;
                   if (day > 5)
                        overCharge = .5f * servCharge;
                   if (hours > 40)
                        overCharge = overCharge + .5f *(hours -
    40) * dRate;
                   servCharge = servCharge + overCharge;
              else
                        if (type == aHours)
                   aHours = aHours + hours;
                   servCharge = hours * aRate;
                   if (day > 5)
                        overCharge = .5f * servCharge;
                   if (hours > 40)
                        overCharge = overCharge + .5f * (hours -
    40) * aRate;
                   servCharge = servCharge + overCharge;
              else
                   System.out.print("service-type-input-code-error-message");
                   return;
         public void updateSums()
         {     dayTotCharge = dayTotCharge + servCharge;
              dayTotOverCharge = dayTotOverCharge + overCharge;
              totCharge = totCharge + servCharge;
              totOverCharge = totOverCharge + overCharge;
              return;
         public void updateHi()
              if (servCharge > hiCharge)
                   hiCharge = servCharge;
                   hiDay = day;
                   hiType = type;
              return;
         public void outJob()
         {     System.out.println("The value of the cust is:"+ f5.format(cust));
              System.out.println("The value of the type is:"+ f5.format(type));
              System.out.println("The number of the hours is:"+ f5.format(hours));
              System.out.println("The value of the servCharge is:"+ f6.format(servCharge));
              System.out.println("The value of the overCharge is:"+ f6.format(overCharge));
              return;
    }

    java.lang.NumberFormatException:You entered something that wasn't a number - which is exactly what you said you did.
    So you need to do something about that.

  • Can't figure out why it's throwing this exception

    Can anyone see a problem with this method? I have checked over everything and can't figure out why it's giving me an exception. All of the get methods are retrieving data and the db table and all the fields are correct.
        // add a Reservation to the database
        public static void addReservation(Reservation aReservation)throws Exception
         try
             String query = "INSERT INTO Reservations (Number, ContactAlias, SPOC, SRNumber, StartDate, EndDate) " +
                           "VALUES ('" + aReservation.getNumber() + "', " +
                           "'" + aReservation.getContact() + "', " +
                           "'" + aReservation.getSPOC() + "', " +
                           "'" + aReservation.getSRNumber() + "', " +
                           "'" + aReservation.getStartDate() + "', " +
                           "'" + aReservation.getEndDate() + "')";
            reservationList.removeAll();
              reservationUIList.removeAll();
              Statement statement = connection.createStatement();
            statement.executeUpdate(query);
              open();
              if( reservationRS !=null)
            while( reservationRS.next() )
                   aNumber = reservationRS.getString(1);
                   reservationList.add(aNumber);
                   reservationUIList.add(aNumber);
              statement.close();
            close();
         catch (Exception e)
                System.out.println("Caught exception in addReservation of DM.");   
                throw e;
         }And the exception:java.sql.SQLException: [Microsoft][ODBC Microsoft Access Driver] Syntax error in INSERT INTO statement.
         at ReservationDM.addReservation(ReservationDM.java:149)
         at Reservation.addReservation(Reservation.java:268)
         at ReservationUI.invokeAdd(ReservationUI.java:552)
         at ReservationUI.actionPerformed(ReservationUI.java:285)
         at java.awt.Button.processActionEvent(Button.java:324)
         at java.awt.Button.processEvent(Button.java:297)
         at java.awt.Component.dispatchEventImpl(Component.java:2588)
         at java.awt.Component.dispatchEvent(Component.java:2492)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:334)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:126)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:93)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:88)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:80)Thanks,
    Shawn

    Well, one extreme that I eventually had to go to was inserting a new row with only the primary keys, which were numerical columns, while just setting the strings to empty values.
    INSERT INTO Courses VALUES(?,?,?,1,0,?,'','','','','','','','','')
    Access finally seemed to handle this without barfing.
    Then, I updated each string column ...if you can believe it ...one at a time in a for loop from a custom 'RowUpdateSet' object. This actually worked well because eventually I also used it to update the row when necessary, and to only update columns whose values had changed. One teeny weeny snippet from a great deal of code looked like this...
      for ( int i=1; i<length; i++ ) {
        if ( updateSet.getUpdateColumn( i ) ) {
          synchronized ( updateSet ) {
            scrollResults.updateObject(i,(String)updateSet.getUpdateValue(i));
            scrollResults.updateRow();
      }I guess I will likely get flamed for participating in this whole discussion, because it all does become quite irrational. I can see why peoples initial response is likely ..."what, couldn't you even debug your own sql string bozo?" All I know is, there seems to be insert statements that Access just mysteriously refuses to perform ...and it has nothing to do with terminated strings or syntax errors. How you choose to perservere and 'get the job done' is probably as unique to each individual as is the whole mysterious error in the first place. I just got tired of staring at what appeared to be a totally disfunctional environment and decided to go around the problem and get done with the project ...which eventually worked like a charm.
    This is exactly what I meant when I said don't look too closely or you might wind up distrusting this technology you are working with on a day to day basis. Frankly, the more I work with technology the more I realize that I, for example, will never use my credit card over the web (particularly with .NET in the picture). I am sure you can find another way to get to the results you want if you think about it creatively. I got my project done. I just didn't get there in the way I had expected I would. Maybe that's not even a bad thing, even though it can be extremely frustrating at times. When we look at all the disclaimers that come with software these days, or look at faster and faster computers that just run slower and slower, maybe we shouldn't expect so much from technology. At least Java allows you to write your own logic and often work around these impediments ...which is still alot better than being stuck with .COM libraries that force you to abandon a project half way through when you find out the library fails to live up to its claims in the reference manual.
    Sorry your project is on hold at the moment. If no one else answers, start a new thread that asks your question again, and I will butt out. Maybe there is someone who has found out what causes this issue. After all, I can only speak from my own experiences ...and I am far from being an authority on any issue surrounding technology. Good luck, and don't give up. I am sure there is a way to get where you want to go.
    After saying all that, I realize kev wrote a response while I was composing this one. As he implores, yes ...do be certain you have eliminated all the obvious possibilities before you adventure into any painfull work-arounds. Really, I wish you all the best of luck.

  • I can't figure out why this page splits in live preview... but not in the browser?

    I've finally got my site up and it all runs great... except I can't figure out why this one page behaves like it's too wide.
    http://www.johnnez.com/mainbooks.html
    It comes apart in the Live Preview.... but not in the browser preview.
    Thanks for any tips...
    jn

    john nez wrote:
    HTML is a total incrutable mystery to me... a mystery inside a mystery inside a mystery!
    Sounds to me like you've almost cracked it!
    You have one error that could cause problems and that's the stray </blockquote> tag.  Just delete it.
    The alt="" text will show as an error on the validator but that's easy to fix and worth doing.
    Here's an easy article on that: http://www.456bereastreet.com/archive/200412/the_alt_and_title_attributes/
    In one of your CSS files (JonzheaderindexCSS.css) you have this:
    body {
    margin-top: 20px;
    padding: 0;
    color: #666;
    font-family: Verdana, Geneva, sans-serif;
    font-size: 14px;
    line-height: normal;
    background-attachment: fixed;
    background-color: #E1B852;
    background-image: url(../images/orange%20plaid.jpg);
    background-repeat: repeat;
    html { overflow-y: scroll; }
    It should be like this:
    html {
    overflow-y: scroll;
    body {
    margin-top: 20px;
    padding: 0;
    color: #666;
    font-family: Verdana, Geneva, sans-serif;
    font-size: 14px;
    line-height: normal;
    background-attachment: fixed;
    background-color: #E1B852;
    background-image: url(../images/orange%20plaid.jpg);
    background-repeat: repeat;
    It looks like you have that rule repeated further down the page like this:
    html { overflow-y: scroll; }
    There's an extra curly brace there (}) anyway, so it is badly formed but the whole rule and extra curly brace can go.
    You can fix those errors but I have a sneaky suspicion that it isn't gong to solve the issue you describe.
    Fix those issues anyway and post back.  Maybe if you can show a screen shot of what you are seeing in DW it might help?
    Martin
    PS: It's never a good idea to have file names on the web that have spaces in.  Your background rule has this:
    background-image: url(../images/orange%20plaid.jpg);
    That .jpg should be orangeplaid.jpg or orangePlaid.jpg or orange_plaid.jpg and the change should be reflected in the reference to the image so, orangePlaid.jpg should be:
    background-image: url(../images/orangePlaid.jpg);

  • Apex bug?  Items being cleared in session state - can't figure out why

    I have an item that is being submitted with a value but is then being overwritten and set to null. I can't see any reason why the submitted value is being overwritten with null.
    I have been debugging this problem for most of the day and can't figure out what is happening and was hoping someone in the forum might be able to shed some light.
    Some details:
    The item is on Page 0, has source type of "PL/SQL Expression or Function", a source expression of "V('REQUEST')", and Source Used = "Always".
    I viewed the HTML source of the rendered page and can see the following HTML, so I know the item has a value when the page is rendered:
    <input type="hidden" id="RENDER_REQUEST" name="p_t08" value="EDIT" />
    I have used Firebug to view the HTTP POST body and can see that p_t08 is being correctly submitted with a value of "EDIT" in the post body.
    When I run the page in debug mode and then view the debug log, I see that Apex is indeed setting this item to null:
         0.01500     0.01600     A C C E P T: Request="WIZ_NEXT"
         0.23400     0.00000     Session State: Save form items and p_arg_values
         0.24900     0.01600     ...Session State: Save "BRANCH_TO_PAGE_ID" - saving same value: ""
         0.24900     0.00000     ...Session State: Save "ROWS_PER_PAGE" - saving same value: ""
         0.26500     0.01500     ...Session State: Save "P0_CLEAR_WS" - saving same value: ""
         0.26500     0.00000     ...Session State: Saved Item "RENDER_REQUEST" New Value=""
    I can't figure out why the item is being set to null.
    This problem also does not occur on every page. The pages in question are a multi-step "wizard" that allows the user to navigate between steps with "Next" and "Previous" buttons. Since this is a page 0 item, it appears on every page in the wizard so I'd expect it to behave the same. When you open the wizard at step 1 and press next to go to step 2, the item (RENDER_REQUEST) is set correctly on step 2 of the wizard, BUT when you then click Next to go to step 3, RENDER_REQUEST is null on step 3. If you open the wizard at step 2 and press Next, RENDER_REQUEST is null on step 3.
    I did find a work around, but it doesn't make any sense why it would work: if I move the RENDER_REQUEST item from the "Footer Items" region to a page level item (by using Edit All and setting its region to blank), then the problem goes away. If I move it back to the "Footer Items" region the problem reoccurs.
    I am working on Application Express 4.0.2.00.07 on Oracle Database 11g Enterprise Edition Release 11.2.0.1.0.
    Any help would be greatly appreciated!
    Thank you.

    Hi Patrick,
    Thanks for the quick response. Unfortunately, I can't reproduce this on apex.oracle.com due because the app requires PL/SQL packages to be installed in several schemas, including some that require system grants (I gave a presentation at Oracle Open World a couple of years ago on some of the techniques I used in building this application that you attended; I think the session was called "Building Large Commercial Applications with Oracle Database 11g and Oracle Application Express").
    Is there another way we can work together to debug this without reproducing it apex.oracle.com? For example, if you could send me an instrumented version of the APEX_040000.F procedure (or whatever procedure is clearing the session state) that has some additional APEX_APPLICATION.DEBUG calls, I could install it on my server, reproduce the error and send you the output.
    Thank you,
    Eric

  • Can't figure out why I'm dropping frames during capture

    I'm dropping frames when capturing 1-hour Mini DV tapes and I can't figure out why.
    I'm capturing on a Mac Pro (Early '08) with 8 GB of memory running FCP 7.0.3 and OS X 10.6.6. I'm capturing to a 4 TB G-Speed eS (eSATA) formatted as RAID 5 (Non-Journaled Extended) with about 750 GB of remaining space. I'm capturing via FireWire with a Canon GL-2. This should be a breeze for this system.
    I've run Apple Disk Utility, Disc Warrior 4 and Techtool Pro 5 on the drives and they seem to be fine. I've unplugged all USB and FireWire devices besides the keyboard and mouse. No virus protection or background utilities are running. I've trashed preferences. AJA System Test shows a 286 MB/s write speed and 254 MB/s read speed. Blackmagic Disk Speed Test shows a 312 MB/s write speed and a 379 MB/s read speed. No other applications besides FCP are running. I edit 1080p HD footage on this system all day long with no issues but when I try to capture DV SD footage, I run into issues.
    The dropped frames error does not ever occur in the same place on the tapes. The tapes are brand new and don't seem to have any time code issues. The only thing I haven't done is to defragment the hard drives. I wouldn't think that capturing simple DV video would be that demanding; the defragment for a 4 TB RAID would likely take 2 or 3 days.
    Any other ideas on what's going on and how to try to fix it? Thanks!

    Thanks for the prompt reply, Studio X. Yes, I'm using FireWire Basic and no other FireWire devices. I've switched FireWire cables, although I doubt that's the issue as the cable I was using was brand new and fit snuggly. Unfortunately, I don't have an alternate playback device right now. Would switching to Non-controllable device capture settings be worth a try?

  • I'm having trouble buying a season pass for The Americans. I have purchased passes to Justified for the past 4 years with no problem. Can't figure out why this purchase won't work.

    I'm having trouble buying a season pass for The Americans. I have purchased passes to Justified for the past 4 years with no problem. Can't figure out why this purchase won't work.

    What is the problem that you are having ? If you are getting an error message then what does it say ?

  • I'm staying at my house in Peru, South America. From my PC laptop I can see my neighbor's wifi service network, but I also have my mini iPad and I can not figure out why I can't get any wifi connection from my area. Is there a setting I need to do?

    I'm staying at my house in Peru, South America. From my PC laptop I can see my neighbor's wifi service network, but I also have my mini iPad and I can not figure out why I can't get any wifi connection from my area. Is there a setting I need to do?

    Yes, I did try to go on my settings>wifi and was waiting for any wifi signals to pick up, but nothing shows up. But on my PC I get a whole list of networks to choose from. Regarding my neighbor, I already have her password that is why I was able to get it on my PC, the problem is that the mini Ipad is not picking any signal neither can it locate me when I go to maps.

  • Can't figure out why colors don't totally change when you select type with curser? It looks like it has by looking at it, but when you highlight the area after the old color is still there. It happens with objects to. Driving me NUTZ. Help!

    Can't figure out why colors don't totally change when you select type with curser? It looks like it has by looking at it, but when you highlight the area after the old color is still there. It happens with objects to. Driving me NUTZ. Help!

    Select the text, and open the Appearance palette (Come on guys, text highlight is irrelevant, it happens to objects too says the OP), and see what's listed there.  For a simple text object, there should only be a line item "Type", followed by "Characters", and when double-clicked the Characters line item expands to tell you the stroke and fill color.  For a basic object, there should be a fill and/or stroke.
    What happens sometimes, is that you end up adding extra strokes/fills to objects or text, and the appearance palette is where that will be noted.  Especially when you are dealing with groups, and/or picking up a color with the eyedropper, you may inadvertently be adding a fill or stroke on top of something.  You can drag those unwanted thingies from the Appearance palette into its own little trash can.

  • I tried to Skype someone but I can't see them but they can see me and I can't figure out why?

    I tried to Skype somebody and they can see me but I can't see them and I can't figure out why?

    I'll guess that you're upgrading from Snow Leopard? You should be able to start using your original install dvd by inserting the disc and restarting while holding the C key. Run Disk Utility from your install disc  and try to repair the drive. Then try the upgrade again.

  • All of a sudden my new iphone will not hold a charge even when it is not being used and I can't figure out why???

    my battery drains even when iphone is not being used.  It is a relatively new phone and this battery draining just started and I can't figure out why????

    Yes, thank you.  My apologies, I was typing one handed and did not add that. 
    Anyway, I have tried deleting the cache, deleting my pics and then re-syncing, etc. and nothing is working This is very frustrating, as I had no problems up until about 2 weeks ago, and now all of a sudden, I have this issue......UGH!

  • Hi, I can't figure out why I can't render on my timeline. I highlight the segment hit "Apple-R" and it gives me a weird message about "conforming HDV video...." and the bar goes as far as 60-66% and holds there forever. It never renders even partially.

    Hi, I can't figure out why I can't render on my timeline. I highlight the segment hit "Apple-R" and it gives me a weird message about "conforming HDV video...." and the bar goes as far as 60-66% and holds there forever. It never renders even partially.

    Yes, I know. I have been working with HDV for some time. I am wondering why it doesn't render when it needs to.. the red and bright-green lines are above, and I've set the render settings such that ANYTHING I highlight and hit apple-R will render. But its not rendering at all.

  • I have an iphone5 that is eating up data time and I can't figure out why? Any thoughts?

    I have an iphone5 that is eating up data time and I can't figure out why? Any thoughts? I have closed everyting I can, even took the phone to Verizon and they are not sure what is going on.   My company email is active and pushes to the phone....I use Safari regularly to look up stuff for personal and work use.  I am on Facebook but have turned it off in notifications.  Four phones and a hotspot on the account....we have 6g and have never come close to it, until lately and it's my phone that's eating up the gigs.  So what the heck is going on?

    Go to Settings/Cellular and you can see how much data each app is using. You can Reset Statistics, then track all of the apps data usage.

  • I'm trying to make an in app purchase and it keeps telling me to come to the support page but I can't figure out why it won't let me do it

    I'm trying to make an in app purchase and it keeps telling me to come to the support page but I can't figure out why it won't let me do it

    And I have gone to the support and it was no help

  • I can't figure out why my reverb and echo things are greyed out

    I can't figure out why my reverb and echo things are greyed out on the bottom right of my screen with the edit tab open for the track. I was going to put a screenshot in here but I couldn't figure it out. I one can understand what I mean. Thank you.

    bennirubber wrote:
    reverb and echo things are greyed out on the bottom right of my screen
    http://www.bulletsandbones.com/GB/GBFAQ.html#effectsdisabled
    (Let the page FULLY load. The link to your answer is at the top of your screen)

Maybe you are looking for

  • TDE Wallets & Multiple Databases on same Host

    The Oracle TDE Best Practices (doc ID 130696) states this: Multiple databases on the same host If there are multiple Oracle Databases installed on the same server, they must access their own individual TDE wallet. Sharing the same wallet between inde

  • Unable to connect muse

    I get this message although my subscription is up to date and I am already connected to the internet. -We haven't been able to validate your Adobe Muse subscription for some time. Please connect to the Internet in order to continue using Adobe Muse.-

  • Apply VCCO at 3.3V before VCCINT will damage the chip?

    Hi; I saw in the datasheet of Artix-7, the right power sequence is VCCINT, VCCBRAM, VCCAUX,  VCCO. My question is if this sequence is violated, that is, if I supply VCCO before VCCINT and other powers, will the chip be damaged? We are developing a ne

  • IPhoto not copy

    iPhoto not copy & paste. I have iPhoto '09 version 8.1.2 (424) and it will not copy a picture from one event and paste in another event.

  • Streaming Audio Lagging (Unusual Bug)

    I have a swf, which loads external movies, each external movie has its own layer in the time line which contains an audio file, the audio is not being used with actionscript, it is just sitting there and plays with the "stream" option enabled in the