Emu 1616M PCI question(take a look,pls)

Hi
I live in Turkey.I want to buy emu 1616M PCI sound card but,it's not available in Turkey.I want to order it from the USA.Do you know any sites ship internationally?
Thanks

Maybe not from USA but directly from E-MU - http://www.emu.com/shop/wtb/welcome.asp
jutapa
Message Edited by jutapa on 11-25-200604:03 PM

Similar Messages

  • Power adaptor in the EMU 1616m PCI

    Hi,
    I'm thinking of ordering the E-MU 1616m PCI from a USA retailer. The retail box contents of this product in the E-MU site mentions a "Universal Power Adaptor". Does that mean that it can be used also in European power sockets (220-230 V in Portugal).
    Thanks in advance.

    Let's be clear about what an adapter is. The Apple "charger" is what I mean when I say "adapter", because the charger is actually in the phone.
    You can charge any iPhone, regardless of where it was purchased, with any Apple USB adapter. You may need a PLUG adapter to plug in the Apple 5 volt USB adapter. You should never use a non-Apple power adapter unless it is certified by Apple. And, unfortunately, you need to watch out for counterfeit "Apple" adapters that are really ripoffs and are not safe to use even though they look like Apple adapters and even have Apple's logo and part number. See these for why:
    https://www.youtube.com/watch?v=wi-b9k-0KfE
    https://www.youtube.com/watch?v=_exfmbsPqEI

  • Can you take a look pls.....urgent

    i'm writing a tax calculator applet i've no compilation errors but my applet doesn't seems to run. can u guys pls help....
    import java.applet.*;
    import java.awt.*;
    import java.awt.event.*;
    public class TaxCal extends Applet implements ActionListener {
         private TextField txtIncome, txtAge, txtChild, txtParent, txtCourse, txtMaid, txtPay;
         private Button b2, b3;
         private Calculate calc;
         public void init() {
                   setBackground(Color.lightGray);
                   /* Create the input boxes, and make sure that the background
                   color is white. (On some platforms, it is automatically.) */
                   txtIncome = new TextField(10);
                   Panel incomePanel = new Panel();
                   incomePanel.setLayout(new BorderLayout(2,2));
                   incomePanel.add( new Label("Input your annual income"), BorderLayout.WEST );
              incomePanel.add(txtIncome, BorderLayout.CENTER);
                   txtAge = new TextField(2);
                   Panel agePanel = new Panel();
                   agePanel.setLayout(new BorderLayout(2,2));
                   agePanel.add( new Label("Input your age"), BorderLayout.WEST );
                   agePanel.add(txtAge, BorderLayout.CENTER);
                   txtChild = new TextField(2);
                   Panel childPanel = new Panel();
                   childPanel.setLayout(new BorderLayout(2,2));
                   childPanel.add( new Label("Number of children"), BorderLayout.WEST );
                   childPanel.add(txtChild, BorderLayout.CENTER);
                   txtParent = new TextField(1);
                   Panel parentPanel = new Panel();
                   parentPanel.setLayout(new BorderLayout(2,2));
                   parentPanel.add( new Label("Number of parent that live with you"), BorderLayout.WEST );
                   parentPanel.add(txtParent, BorderLayout.CENTER);
                   txtCourse = new TextField(5);
                   Panel coursePanel = new Panel();
                   coursePanel.setLayout(new BorderLayout(2,2));
                   coursePanel.add( new Label("Course fee"), BorderLayout.WEST );
                   coursePanel.add(txtCourse, BorderLayout.CENTER);
                   txtMaid = new TextField(5);
                   Panel maidPanel = new Panel();
                   maidPanel.setLayout(new BorderLayout(2,2));
                   maidPanel.add( new Label("Maid levy paid"), BorderLayout.WEST );
                   maidPanel.add(txtMaid, BorderLayout.CENTER);
                   txtPay = new TextField(10);
                   txtPay.setEditable(false);
                   Panel payPanel = new Panel();
                   payPanel.setLayout(new BorderLayout(2,2));
                   payPanel.add( new Label("Please pay"), BorderLayout.WEST );
                   payPanel.add(txtPay, BorderLayout.CENTER);
                   Panel buttonPanel = new Panel();
                   buttonPanel.setLayout(new GridLayout(1,3));
                   Button b2 = new Button("Reset");
                   b2.addActionListener(this);     // register listener
                   buttonPanel.add(b2);
                   Button b3 = new Button("Calculate");
                   b3.addActionListener(this);     // register listener
                   buttonPanel.add(b3);
                   /* Set up the layout for the applet, using a GridLayout,
              and add all the components that have been created. */
              setLayout(new GridLayout(8,2));
                   add(incomePanel);
                   add(agePanel);
                   add(childPanel);
                   add(parentPanel);
              add(coursePanel);
              add(maidPanel);
              add(payPanel);
              add(buttonPanel);
              /* Try to give the input focus to txtIncome, which is
              the natural place for the user to start. */
              txtIncome.requestFocus();
              } // end init()
         public TaxCal() {
         calc = new Calculate();
         public Insets getInsets() {
    // Leave some space around the borders of the applet.
         return new Insets(2,2,2,2);
         // event handler for ActionEvent
         public void actionPerformed (ActionEvent e) {
              String s = e.getActionCommand();
              if (s.equals("Calculate"))
                   //double income = calc.GetIncome(txtIncome.getText());
                   double age = calc.GetAge(txtAge.getText());
                   double child = calc.GetChild(txtChild.getText());
                   double parent = calc.GetParent(txtParent.getText());
                   double course = calc.GetCourse(txtCourse.getText());
                   double maid = calc.GetMaid(txtMaid.getText());
                   double relief = calc.GetRelief(age, child, parent, course, maid);
                   double result = calc.GetResult(txtIncome.getText(), relief);
                   txtPay.setText("$" + Double.toString(result));
              else
                   txtIncome.setText("");
                   txtAge.setText("");
                   txtChild.setText("");
                   txtParent.setText("");
                   txtCourse.setText("");
                   txtMaid.setText("");
                   txtPay.setText("");
    }     // end actionPerformed()
    public class Calculate
    private double income;
    private double age, ageRelief;
    private double child, childRelief;
    private double parent, parentRelief;
    private double course, courseRelief;
    private double maid, maidRelief;
    private double totalRelief;
    private double result;
    public Calculate()
    income = 0;
    age = 0;
    ageRelief = 0;
    child = 0;
    childRelief = 0;
    parent = 0;
    parentRelief = 0;
    course = 0;
    courseRelief = 0;
    maid = 0;
    maidRelief = 0;
    totalRelief = 0;
    result = 0;
    public double GetAge(String theage) {
    age = Double.parseDouble(theage);
         //determine age relief
         if(age<55)
         ageRelief += 3000;
         else if(age>=55 && age<= 59)
         ageRelief += 8000;
         else
         ageRelief += 10000;
         return ageRelief;
    public double GetChild(String thechild) {
    child = Double.parseDouble(thechild);
         //determine children relief
         if(child<=3)
         childRelief += (child*2000);
         else if(child>3 && child<6)
         childRelief += ((child-3)*500 + 6000);
         else
         childRelief += 0;
         return childRelief;
    public double GetParent(String theparent) {
    parent = Double.parseDouble(theparent);
         //determine parent relief
         if(parent == 1)
         parentRelief += 3000;
         else if(parent ==2)
         parentRelief += 6000;
         else
         parentRelief += 0;
         return parentRelief;
    public double GetCourse(String thecourse) {
    course = Double.parseDouble(thecourse);
         //determine course subsidy
         if(course != 0 ) {
         if(course <= 2500)
         courseRelief += course;
         else
         courseRelief += 2500;
         return courseRelief;
    public double GetMaid(String themaid) {
    maid = Double.parseDouble(themaid);
         //determine maid levy
         if(maid != 0) {
         if(maid <= 4000)
         maidRelief += 2 * maid;
         else
         maidRelief += 0;
         return maidRelief;
    public double GetRelief(double theage, double thechild, double theparent, double thecourse, double themaid) {
         double totalRelief = age + child + parent + course + maid;
         return totalRelief;
    public double GetResult(String theincome, double therelief) {
         income = Double.parseDouble(theincome);
         totalRelief = therelief;
         income =- totalRelief;
         if (income <= 7500)
         result = income * .02;
         else if (income > 7500 && income <= 20000)
         result = 150 + ((income - 7500) * .05);
         else if (income > 20000 && income <= 35000)
         result = ((income - 20000) * .08) + 775;
         else if (income> 35000 && income <= 50000)
         result = ((income - 35000) * .12) + 1975;
         else if (income > 50000 && income <= 75000)
         result = ((income - 50000) * .16) + 3775;
         else if (income > 75000 && income <= 100000)
         result = ((income - 75000) * .2) + 7775;
         else if (income > 100000 && income <= 150000)
         result = ((income - 100000) * .22) + 12775;
         else if (income > 150000 && income <= 200000)
         result = ((income - 150000) * .23) + 23775;
         else if (income > 200000 && income <= 400000)
         result = ((income - 200000) * .26) + 35275;
         else if (income > 400000)
         result = ((income - 400000) * .28) + 87275;
         return result;
    } // end of class Calculate
    }      // end class TaxCal

    In order to run an applet you must encapsulate it in a web page using the APPLET tag and open the web page with an internet browser, or include the APPLET tag in the source code of the applet class and run it with the appletviewer.
    In order to run your applet in the appletviewer add this in between the import statements and the class implementation.
    <APPLET Code="TaxCal" width="300" height="300">
    </APPLET>
    Good Luck.

  • And again firewall issue... (but take a look, pls)

    I read posts here again and again, but didn't find an answer; situation:
    1. my rmi-app works fine on local network;
    2. i deployed Server-side of it on my web-server;
    3. web-admin opened 2 ports (1099 & 3456) in server firewall;
    4. server started;
    5. client runs and binds server object
    6. when trying to execute method, exception appears:
    Connection refused to host: 127.0.0.1; nested exception is:
    java.net.ConnectException: Connection refused: connect
    I cannot understand why it wants to connect to 127.0.0.1 ???
    Some server code:
    Registry r = LocateRegistry.createRegistry(1099);
    RmiImpl implementation = new RmiImpl("RmiImpl",3456);
    RmiImpl code:
    public RmiImpl(String name, int port) throws RemoteException
    super(port);
    try
    Naming.rebind(name, this);
    java.policy file on server:
    grant
    permission java.security.AllPermission;
    running server: ./java Server
    Client code:
    java.rmi.registry.Registry r = java.rmi.registry.LocateRegistry.getRegistry(serverName, 1099);
    // this works
    myServerObject = (RmiInterface) r.lookup("RmiImpl");
    // this is ok, too - I think I have pointer to server object now
    myServerObject.getServerInfo();
    // here I have Exception:
    Connection refused to host: 127.0.0.1; nested exception is:
    java.net.ConnectException: Connection refused: connect
    any ideas, pls? I thought I almost reached final...
    // and excuse my English

    Your RMI server doesn't know its hostname or external IP address. Check your host file or whatever DNS configuration you use. If you can't fix that, set java.rmi.server.hostname at the server VM to the server host's external hostname or IP address.
    EJP

  • Static ARP Entry telnet command - techies take a look pls!!

    Hello Seniors,
    What is the TYPICAL telnet commpand for binding a MAC address to an IP (aka Static ARP entry) on most Linksys routers? I don't have GUI for this within the FW so telnet is the hope.
    I am making  question quite simple with ahope the story behind is not quite necessary to desist the thread from going astray
    I am inside my telnet# on 192.168.1.1, I just need the usual command syntax,
    Thank you.
    Solved!
    Go to Solution.

    Linksys X3500:
    arp add 192.168.1.xxx aa:bb:cc:dd:ee:ff
    arp delete 192.168.1.xxx
    arp show

  • EMU 1616m PCIe not recognized in SB CS4

    I recently installed my soundc
    ard internally to the motherboard and it works great in ableton live. Now I am trying to record vinyl into sound
    booth and whenever i go to preferences> Audio Hardware  and then I pick default devices. It gets stuck on my previous driver of asio4all. any ideas on how to get it back into ASIO and then use the E-MU ASIO driver?

    nevermind. I read the FAQ and figured out that since I have windows 7 64 bit, i just changed the theme from aero
    to basic and I was able to switch back to the E-MU ASIO as the default driver.

  • An exciting question, please take a look

    This question is actually not quite exciting, but since you are here, please take a look. thank you.
    I have a question as following: I have three classes, Panel1, Panel2, and PanelPrimary, all 3 extends JPanel. Panel1 and Panel2 both have a JButton, button1 and button2 respectively. PanelPrimary has a CardLayout. In PanelPrimary, I created a Panel1 and a Panel2 and added them to PanelPrimary as the cards because i'm using CardLayout.
    I want to click on button1 so that PanelPrimary shows Panel2, and click on button2 so that PanelPrimary shows Panel1.
    But I dont know how to access PanelPrimary in Panel1 and Panel 2.
    here's what i get so far:
    public class Panel1 extends JPanel
    private JButton button;
    public Panel1()
    button=new JButton();
    button.addActionListener(new BListener())
    private class Blistener implements ActionListener
    public void actionPerformed(ActionEvent e)
    //Here's the code I dont know how to write
    class Panel2 is same as Panel1 except the actionPerformed part.
    public class PanelPrimary
    //i'm not very sure about how to write this class
    thanks for reading

    This question is actually not quite exciting, but
    since you are here, please take a look. thank you.This approach working out for you? Usually a title which actually describes your problem gets the better responses.
    And to "do tabs", you put your code within [ code ] tags (there's even a button for it).

  • 1820M or 1616M PCI

    Hi Everyone
    I don't know if this is the right forum to ask this question ...but here goes!
    I was on the verge of buying an 1820M when I was told by a UK dealer that the 1820M has been discontinued and yet it is still very much available in the USA.
    What is the difference between these two cards. To me it seems like the 1616M is LESS for MORE money, but I may be wrong.
    Anyone that can help (Jenny?) I would be most grateful.
    thank you
    Robocop

    Hi All
    This is part of a response I received from EMU USA:
    Yes, the 1616M PCI and Cardbus interfaces are becoming our flagship
    item, as the 1820M is no longer being manufactured en masse. Now, we're
    still supporting the 1820M, and it's still an awesome piece of hardware
    (especially if you need those extra couple of ins/outs), but the 1616M
    has much better Mic/Line/Hi-Z inputs.
    So that's the basic tradeoff and difference between them. The 1616M
    blows the Mic inputs on the 1820M away, but the 1820M has 2 extra analog
    inputs and 4 extra outputs. Depending on your current gear and what
    you'll be using the interface for, you should basically weigh those two
    things and see which one matters more to you! Please let me know if
    there's anything else I can do to assist.
    I just thought this will be useful
    Robocop

  • Conflict between EMU 1212M PCI-e and Gigabyte 970A-D3 High Latency!!!

    I recently built a new DAW around my EMU 1212m PCI-e card using a Gigabyte 970A-D3 , Phenom2-X6 T1055 Chip. The reason I built this new DAW was because all of a sudden my old DAW started having unusually high latency and uneven core distribution (core 1 was amped out) this started after I flashed the BIOS to my old board and I updated Sonar to X1c. I tried various setting with the old DAW but could no longer get the performance prior to these changes. My original plan was to change the motherboard and memory and put into DDR3 and keep the original chip but that made things worse. So I then decided to go to the 6 core it was cheap enough so what the heck, but the same thing now luck. I then tried to use a USB based audio interface for the test I just purchased a Behringer UCA202 and I found a much improved response. My final test was to try yet another board my choice for the board was the MSI 870S-G54 and I got much better results but not as near as good as I was getting originally.
    Please note that with each of these test I was exchanging cards to different slots, trying various BIOS setting and all driver are current and updated and baI sically doing what ever it take to troubleshooting a DAW but I have seen absolulty no changes. All power saving setting on the BIOS was turned off (C-1 halt, AMD Cool &amp; Quiet, TurboBoost, etc)With the change to the MSI board I was able to get about 30 tracks of VST's running at about 6ms however with the Gigabyte board I was getting at 50ms with he same project it was crapping out.
    Reaper has far less power usage as is expected from Reaper yet it was halting and glitching. Comparing the Behringer to the EMU showed about 25% less CPU useage.
    My questions are as follows:
    Anybody out there had a problem with the C1 update?
    Anybody having trouble using a Gigabyte board?
    Anybody having problems with the EMU card over any other Audio Interface?
    Each time I updated a component I did a clean install of Win7-64bit. I should also let you know that I am using the 32bit versions of Reaper in Sonar only because the project that I am finishing now started in 32bit.
    Does anyone have any clues? Please help.....

    JJ,
    Have you tried [url=http://www.thesycon.de/deu/latency_check.shtml">http://www.thesycon.de/deu/latency_check.shtml[/url]
    This app may give you a better idea of what is going on in your system.
    Also what resources are being used ? Is the card sharing IRQ's
    With multicore systems sometimes you may want to try assigning CPU affinity to just one Process like the emaudsv.exe
    Casey

  • ReadString problem!! could anyone help me take a look

    hi... i am doing a music Cd list program. there are two operation i need to do 1) insertion and 2) deletion. i have implemented my own sortList to do it... i work fine when i do the insertion to the list but it can`t perform well on deletion.. However, i am sure that my list deletion algoritm is totally correct... i perform two test as following to ensure my deletion is correct..but i think the problem is on my readString fucntoon ...could anyone help me take a look!!
    public class SortedListTesting
         SortedList musicCdList = new SortedList();
         ReadOperation theRo = new ReadOperation();
         //ErrorCheckingOperation theEco = new ErrorCheckingOperation();
         MusicCd temp;
         public void insertCdWithReadStringFunction()
              String musicCdsTitle;
              //try to prompt the user `s cd `s title for insertion to our List
              musicCdsTitle = theRo.readString("Please enter your CD`s title : ");
              musicCdList.insert(new MusicCd(musicCdsTitle));
              System.out.println("Number of items in the list: "
                                         + musicCdList.getNumberOfItems() + "\n" + musicCdList.toString() );
         public void deleteCdWithReadStringFunction()
              try
                   //try to prompt the user `s delected cd `s title
                   String keyword = theRo.readString("Please enter CD `s title to be delected from SMOA : ") ;
                   // System.out.println("The CD that you just deleted is " + keyword);
                   temp = musicCdList.delete(keyword);
                   System.out.println("Number of items in the list: "
                                  + musicCdList.getNumberOfItems() + "\n" + temp );
              catch ( InvalidDataException errorMsg )
                   System.out.println( errorMsg.getMessage() + "\n" );
                   System.out.println("Now, We have " + musicCdList.getNumberOfItems() + " items in the list, and the items as following  :\n" + musicCdList.toString() );
         public void insertCd()
              String musicCdsTitle;
              //try to input the string directly to our list
              musicCdsTitle = "ann";//theRo.readString("Please enter your CD`s title : ");
              musicCdList.insert(new MusicCd(musicCdsTitle));
              System.out.println("Now, the number of items in the list: "
                               + musicCdList.getNumberOfItems() + "\n" + musicCdList.toString() );
         public void deleteCd()
                            try
                              //try to input the String directly
                              String keyword = "ann"; //theRo.readString("Please enter CD `s title to be delected from SMOA : ") ;
                              System.out.println("The CD that you just deleted is " + keyword);
                              temp = musicCdList.delete(keyword);
                                 //System.out.println("Number of items in the list: "
                                 //                     + musicCdList.getNumberOfItems() + "\n" + temp );
                         catch ( InvalidDataException errorMsg )
                              System.out.println( errorMsg.getMessage() + "\n" );
                        System.out.println("Now, We have " + musicCdList.getNumberOfItems() + " items in the list, and the items as following  :\n" + musicCdList.toString() );
         public static void main(String[] args)
              SortedListTesting st = new SortedListTesting();
              //These two testing i am trying to show that my list is working fine for inseting and deleting
              //i try to input the cd `s title name " ivan " by my readString function, it work fine for insertion
              //but it is fail in delete fuction..it shows that "ivan not found: cannot be deleted" ...At first,
              //i think it is my delete function problem..but it is not my delete function problem...cos it work fine if
              //input the string directly from the function...i think the issues works on my readString fucntion
              //i try a milllion of time but i still got the same problem ...pls help....
              System.out.println("\t...Testing for input from readString fuction...\t");
              st.insertCdWithReadStringFunction();
              st.deleteCdWithReadStringFunction();
              //it work fine for input the string directly in the function, it show as following...
              System.out.println("\t...Testing for input the string directly ...\t");
              st.insertCd();
              st.deleteCd();
    javac SortedListTesting.java
    Exit code: 0
    java SortedListTesting     ...Testing for input from readString fuction...     
    Please enter your CD`s title : ivan   <<-inserting the cd`s title to our list
    Number of items in the list: 1     <<- sucessfully insert to our list
    Title: ivan 
    Please enter CD `s title to be delected from SMOA : ivan  <<- try to delete from our list, i type "ivan" here
    ivan not found: cannot be deleted    <<- problem occur , it should be fine in there
    Now, We have 1 items in the list, and the items as following  :
    Title: ivan         <<- it should not be shown
         ...Testing for input the string directly ...     
    Now, the number of items in the list: 2
    Title: ann   <<- i pass "ann" String directly to insertion function
    Title: ivan   <<- it is the left over from the preivous process
    The CD that you just deleted is ann   <<- i pass " ann" String directly to my deletion
    Now, We have 1 items in the list, and the items as following  : <<- it successfully delete .... it prove that my deletion function is working properly....i think it is on readString problem..
    Title: ivan
    Exit code: 0*/
    //it seems that the readString function read the string
    //at the first time does not match the second time
    //reading, it makes it can`t find the stuff from the list ..
    import java.util.*;
    public class ReadOperation{
         //pls help check here....thx
         public String readString(String userInstruction)
              String aString = null;
              try
                         Scanner scan = new Scanner(System.in);
                   System.out.print(userInstruction);
                   aString = scan.nextLine();
              catch (NoSuchElementException e)
                   //if no line was found
                   System.out.println("\nNoSuchElementException error occurred (no line was found) " + e);
              catch (IllegalStateException e)
                   // if this scanner is closed
                   System.out.println("\nIllegalStateException error occurred (scanner is closed)" + e);
              return aString;
         public char readTheFirstChar(String userInstruction)
              char aChar = ' ';
              String strSelection = null;
              try
                   //char charSelection;
                         Scanner scan = new Scanner(System.in);
                   System.out.print(userInstruction);
                   strSelection = scan.next();
                   aChar =  strSelection.charAt(0);
              catch (NoSuchElementException e)
                   //if no line was found
                   System.out.println("\nNoSuchElementException error occurred (no line was found) " + e);
              catch (IllegalStateException e)
                   // if this scanner is closed
                   System.out.println("\nIllegalStateException error occurred (scanner is closed)" + e);
              return aChar;
         public int readInt(String userInstruction) {
              int aInt = 0;
              try {
                   Scanner scan = new Scanner(System.in);
                   System.out.print(userInstruction);
                   aInt = scan.nextInt();
              } catch (InputMismatchException e) {
                   System.out.println("\nInputMismatchException error occurred (the next token does not match the Integer regular expression, or is out of range) " + e);
              } catch (NoSuchElementException e) {
                   System.out.println("\nNoSuchElementException error occurred (input is exhausted)" + e);
              } catch (IllegalStateException e) {
                   System.out.println("\nIllegalStateException error occurred (scanner is closed)" + e);
              return aInt;
    public class SortedList extends ShellSortedList implements SortedListInterface<MusicCd>
         public SortedList()
              super();
         public void insert( MusicCd aCd )
              MusicCdNode cdNode = new MusicCdNode( aCd );
              cdNode.setNext( head );
              head = cdNode;
              numberOfItems++;
         public MusicCd delete(String aCdsTitle)
                                                throws InvalidDataException
              MusicCdNode current = head;
              MusicCdNode previous = null;
              while( current != null
                    && current.getMusicCd().getCdTitle() != aCdsTitle)
                   previous = current;
                   current = current.getNext();
              if (current == null ) //not found
                   throw new InvalidDataException(aCdsTitle
                                 + " not found: cannot be deleted" );
              else
                   if( current == head )
                        head = head.getNext(); //delete head
                   else
                        previous.setNext( current.getNext() );
                   numberOfItems--;
                   return current.getMusicCd();
         public MusicCd modify(String anExistedCdsTitle, String aModifyCdsTitle)
                                   throws InvalidDataException
              MusicCdNode current = head;
              while( current != null
                    && current.getMusicCd().getCdTitle() !=  anExistedCdsTitle)
                   current = current.getNext();
              if ( current == null )
                   throw new InvalidDataException( anExistedCdsTitle
                                 + " not found: cannot be deleted" );
              else
                   MusicCd tempCd = new MusicCd();
                   tempCd.setCdTitle(aModifyCdsTitle);
                   current.setMusicCd(tempCd);
                   return current.getMusicCd();
    }//for better understand of my program
    public interface SortedListInterface<T>
         //public SortedList();
         public void insert( T anElement );
         public T delete(String searchKey)
                                         throws InvalidDataException;
         public T modify(String searchKey, String aModifyTitle)
                             throws InvalidDataException;
    public abstract class ShellSortedList
         protected MusicCdNode head;
         protected int numberOfItems;
         public ShellSortedList()
              head = null;
              numberOfItems = 0;
         public int getNumberOfItems()
              return numberOfItems;
         public boolean isEmpty()
              return( numberOfItems == 0 );
         public boolean isDuplicate(String newCD)
                boolean found = false;
                MusicCdNode current = head;
                for( int i=0; i < numberOfItems; i++)
                   if(current.getMusicCd().getCdTitle().equals(newCD))
                   System.out.println("Duplicate Cd is found !!");
                            found = true;
                   current = current.getNext();
                    return found;
         public String toString()
              String listString = " ";
              MusicCdNode current = head;
              for( int i=0; i < numberOfItems; i++)
                   listString += current.getMusicCd().toString() + "\n";
                   current = current.getNext();
              return listString;
    public class MusicCdNode
         private MusicCd cd;
         private MusicCdNode next;
         // Default constructor
         public MusicCdNode()
         // Description: Initialize the reference for the cd object and the value of next to null.
         // Postcondition: cd = null; next = null;
              cd = null;
              next = null;
         // Parameterized constructor
         public MusicCdNode(MusicCd aCd)
         // Description: Set the reference for the cd object according to the parameters and value of next to null.
         // Postcondition: cd = aCd; next = null;
              cd = aCd;
              next = null;
           public MusicCd getMusicCd()
              return new MusicCd(cd.getCdTitle());
         public MusicCdNode getNext()
              return next;
         public void setMusicCd(MusicCd aCd)
              cd = new MusicCd(aCd.getCdTitle());
         public void setNext(MusicCdNode aCd)
              next = aCd;
    // File: MusicCd.java
    // Author: Chi Lun To (Ivan To)
    // Created on: June 5, 2007
    // Class Description
    // The MusicCd class defines a music cd object that contain the CD`s title, CD`s artist/GroupName,
    //  CD`s yearOfRelease , Cd`s music genre, and any comment of the Cd`s. This class provides functions
    //  to access the musicCdsTitle, artistOrGroupName, yearOfRelease, musicGenre, and aComment variable.
    //  Class Invariant: All MusicCd objects have a  string musicCdsTitle, string artistOrGroupName, integer yearOfRelease
    //  String musicGenre, and String aComment. A string type musicCdsTitle,artistOrGroupName, musicGenre,or aComment of "None"
    //  indicates no real name specified yet. A integer yearOfRelease of 1000 indicates no real years specific yet.
    public class MusicCd
         String theCdTitle;// the CD`s Title
         // Default constructor
         public MusicCd()
         // Description: Initialize theCdTitle to empty string
         // Postcondition: theCdTitle = " ";
              theCdTitle = " ";
         }//end constructor
         // Parameterized constructor
         public MusicCd(String aCdTitle)
         // Description: Set theCdTitle according to the parameters
         // Postcondition: theCdTitle = aCdTitle;
              theCdTitle = aCdTitle;
         } // end constructor
         // Accessor function : getCdTitle( ) function
         public String getCdTitle()
         // Description: Method to return the theCdTitle
         // Postcondition: the value of theCdTitle is returned
              return theCdTitle;
         }// end  getCdTitle( ) function
         // Mutator function: setCdTitle( ) function
         public void setCdTitle(String aCdTitle)
         // Description: Method to set theCdTitle according to the parameter
         // Postcondition: theCdTitle = aCdTitle;
              theCdTitle = aCdTitle;
         }// end setCdTitle( ) function
         // toString( ) function
         public String toString()
         // Description: Method to return the theCdTitle
         // Postcondition: the value of theCdTitle is returned as String
                   return("Title: " + theCdTitle );
         }// end  toString( ) function
    // File: InvalidDataException.java
    // Author: Chi Lun To (Ivan To)
    // Created on: June 5, 2007
    // Class Description
    // The InvalidDataException class is a self- defined exception class which handles
    // the issues that may arise with return value of the deleted and modify function.
    // For example,  the issue will occurs if the user try to delete the music cd from a empty list
    // or deleting a music cd that does not exist on the list. it would return null to the user. But, the user
    // expected to return an obeject reference of the music cd.Therefore, we instantiate InvalidDataException
    // class to handle this issue.
    //  Class Invariant:
    //  InvalidDataException class is a self-defining exceptional class which
    //  inherits the existing functionality of the Exception class.
    public class InvalidDataException extends Exception
         //Parameterized constructor
         public InvalidDataException( String s )
              super( s ); //inherits the existing functionality of the Exception class.
    }Message was edited by:
    Ivan1238
    Message was edited by:
    Ivan1238

    thx for your suggestion ..but i did try to skip my code..but i am sure if u guy understand what i am trying to ask ..so i try to show my all program for u guy better undrstand my problem ...the first three paragraph of code i hope u guy could focus on it ....i try ask the user to input the cd`s title to our insert list by using a function call readString( ) and i use this method to ask the user what cd they want to be delete from the list ...but it doesn`t work when i try to perform the delete cd funtion. At first, i think it should be my deleteCd( ) problem ..but i do some testing on it..it works fine if i pass a String directly to my function instead of using readString() function to perform ...therefore, i am sure my delete function working fine....i am thinking if it is my readString() problem make my deletion does not perform well...thx for u guy help

  • I'm trying to Ignore a file header when reading a file, but no succes?? Take a look.... please...

    I posted the question in another forum,
    Take a look at my VI,
    What is wrong
    I'm trying to ignore the Header sekvens, (the first line) when reading the data to a chart.
    but ts noyt working,, did i missed something!?
    Zamzam
    HFZ
    Attachments:
    ReadDataFile11.vi ‏87 KB

    Hi again HFZ,
    The "read file" function has an option called "line mode" which is False by default, if you link a TRUE instead, you will only read one line of your file, you can then play with the offset in a while loop to read lines until the end of the file.
    But it might be even easier to read the whole file (with line mode False) then do a "spreadsheet string to array" (look in arra palette) and then remove the first line.
    I'm sorry I don't have time to have a look/modify your VI... On top of that you'll get much more satisfaction if you get through that yourself
    have fun !
    When my feet touch the ground each morning the devil thinks "bloody hell... He's up again!"

  • Please take a look at this. Attempting to make a professional brochure/bound 5-page presentation.

    Please take a look at this template I made for a Statement of Qualifications pamphlet.
    Here is a link to google drive. I made this template from scratch in Photoshop CS6.
    SOQ Page_Blank(no lettering).pdf - Google Drive
    What I am curious about, is that some of the lettering often looks blurry, although the page is 500pixels per inch 8.5x11, 76MB .psd file. What can I do about that?
    Also, I want to make it easy to write and edit the actual content that will go onto the page. Not all of us here have photoshop to edit the lettering. Is there a way I can export this to word so they can edit the content whenever? Are there better options (programs) to help me design this template? I am guessing I am somewhat pushing photoshops limit as to making a bound 5-page presentation. I am stuck and would like this to be easier. All suggestions for both of my questions as well as overall action toward making this would be great.
    Here is an example of a SOQ Pamphlet that I have been using as reference. In my eyes the design is perfect!
    http://www.ch2m.com/corporate/markets/environmental/conferences/setac-2013/assets/CH2M-HIL L-land-conservation-restoratio…
    Any help is great,
    Thanks,
    Adam

    Since photoshop can not do pages, your on the right track by using pdf format. Since it can do pages, but really requires acrobat pro to bind the pages together.
    Your best bet is InDesign then Illustrator would be the next option. Each of these can do multi page documents.
    There is absolutely no reason to use 500px/inch for the resolution anything between 150 and 300 would suffice leaning towards 300ppi.
    If the text is blurred a few things that can cause that, 1) anti-aliasing 2) document was created as a low resolution then upsampled 3) text is rasterized 4) document is rasterized.

  • I keep getting BSOD, can you take a look at my dumps

    I am trying to trouble shoot BSOD's on my computer.  It seems like they are happening everyday.
    The image name was ntkrnlmp.exe in most of the dumps.  I got errors of memory_management, system_service_exception, KMODE_EXCEPTION_NOT_HANDLED, and others in the dumps  .
    Aswsp.sys also came up in one of the dumps.
    Here is a link to some of the latest minidumps:  http://meltoninteriors.com/adjc98/minidumps.zip
    Can you take a look at the dumps to point me in the right direction as to the cause of the BSOD's?
    My computer is Windows 7,  64bit Intel processor, 32 gig of ram.  Intel HD Graphics 4600.  This computer is custom built so hardware could be an isssue.
    When I ran WinDbg on the minidump from the latest BSOD I got this below:
    Latest minidump:
    2: kd> .reload
    Loading Kernel Symbols
    Loading User Symbols
    Loading unloaded module list
    2: kd> !analyze -v
    *                        Bugcheck Analysis                                    *
    KMODE_EXCEPTION_NOT_HANDLED (1e)
    This is a very common bugcheck.  Usually the exception address pinpoints
    the driver/function that caused the problem.  Always note this address
    as well as the link date of the driver/image that contains this address.
    Arguments:
    Arg1: ffffffffc0000005, The exception code that was not handled
    Arg2: fffff80002e7dfa7, The address that the exception occurred at
    Arg3: 0000000000000000, Parameter 0 of the exception
    Arg4: ffffffffffffffff, Parameter 1 of the exception
    Debugging Details:
    READ_ADDRESS: GetPointerFromAddress: unable to read from fffff800030af100
    GetUlongFromAddress: unable to read from fffff800030af1c0
     0000000000000000 Nonpaged pool
    EXCEPTION_CODE: (NTSTATUS) 0xc0000005 - The instruction at 0x%08lx referenced memory at 0x%08lx. The memory could not be %s.
    FAULTING_IP: 
    nt!KeRemoveQueueEx+177
    fffff800`02e7dfa7 c3              ret
    BUGCHECK_STR:  0x1E_c0000005_R
    CUSTOMER_CRASH_COUNT:  1
    DEFAULT_BUCKET_ID:  WIN7_DRIVER_FAULT
    PROCESS_NAME:  svchost.exe
    CURRENT_IRQL:  0
    ANALYSIS_VERSION: 6.3.9600.17298 (debuggers(dbg).141024-1500) amd64fre
    LAST_CONTROL_TRANSFER:  from fffff80002ec1698 to fffff80002e75ec0
    STACK_TEXT:  
    fffff880`0c90cf28 fffff800`02ec1698 : 00000000`0000001e ffffffff`c0000005 fffff800`02e7dfa7 00000000`00000000 : nt!KeBugCheckEx
    fffff880`0c90cf30 fffff800`02e75542 : fffff880`0c90d708 fffff880`0c90da88 fffff880`0c90d7b0 fffff880`0c90daa0 : nt! ?? ::FNODOBFM::`string'+0x487ed
    fffff880`0c90d5d0 fffff800`02e73e4a : 00000000`00000000 fffffa80`1e2144d0 fffffa80`1e2144d0 ffeff800`02ff2e80 : nt!KiExceptionDispatch+0xc2
    fffff880`0c90d7b0 fffff800`02e7dfa7 : fffff800`03161097 fffffa80`00000000 fffffa80`1cde5e01 00000000`00000001 : nt!KiGeneralProtectionFault+0x10a
    fffff880`0c90d948 fffff800`03161097 : fffffa80`00000000 fffffa80`1cde5e01 00000000`00000001 fffffa80`1cde5ef0 : nt!KeRemoveQueueEx+0x177
    fffff880`0c90d950 fffff800`02e61df6 : 000007fe`fe362e00 fffff880`0c90da68 fffff880`0c90da88 00000000`00000001 : nt!IoRemoveIoCompletion+0x47
    fffff880`0c90d9e0 fffff800`02e75153 : fffffa80`1e2144d0 00000000`774b45c0 00000000`00000000 00000000`001f1540 : nt!NtWaitForWorkViaWorkerFactory+0x285
    fffff880`0c90dae0 00000000`77402bba : 00000000`00000000 00000000`00000000 00000000`00000000 00000000`00000000 : nt!KiSystemServiceCopyEnd+0x13
    00000000`0143fad8 00000000`00000000 : 00000000`00000000 00000000`00000000 00000000`00000000 00000000`00000000 : 0x77402bba
    STACK_COMMAND:  kb
    FOLLOWUP_IP: 
    nt!KeRemoveQueueEx+177
    fffff800`02e7dfa7 c3              ret
    SYMBOL_STACK_INDEX:  4
    SYMBOL_NAME:  nt!KeRemoveQueueEx+177
    FOLLOWUP_NAME:  MachineOwner
    MODULE_NAME: nt
    IMAGE_NAME:  ntkrnlmp.exe
    DEBUG_FLR_IMAGE_TIMESTAMP:  54d0317d
    IMAGE_VERSION:  6.1.7601.18741
    FAILURE_BUCKET_ID:  X64_0x1E_c0000005_R_nt!KeRemoveQueueEx+177
    BUCKET_ID:  X64_0x1E_c0000005_R_nt!KeRemoveQueueEx+177
    ANALYSIS_SOURCE:  KM
    FAILURE_ID_HASH_STRING:  km:x64_0x1e_c0000005_r_nt!keremovequeueex+177
    FAILURE_ID_HASH:  {e3b31b0e-2cc9-701e-fdb4-9e82dce27d67}
    Followup: MachineOwner

    Unfortunately, the crash dump was not very helpful. Do this.
    Update or remove
    Loaded symbol image file: CAM_Client_V2.sys
        Image path: \??\C:\Program Files (x86)\NZXT\CAMV2.0beta\CAM_Client_V2.sys
        Image name: CAM_Client_V2.sys
        Timestamp:        Sat Jul 26 09:29:37 2008
    (488B26C1)
    Uninstall
    Loaded symbol image file: dtsoftbus01.sys
        Image path: \SystemRoot\System32\drivers\dtsoftbus01.sys
        Image name: dtsoftbus01.sys
    dtsoftbus01.sys:
    http://sysnative.com/drivers/driver.php?id=dtsoftbus01.sys
    Please run driver verifier (DV) per the instructions in the link below.
    Note:
    Make sure to read and remember the steps to reset DV in the event of a crash, and post a link to the newly generated crash dump here.
    Driver Verifier-- tracking down a mis-behaving driver. Co-Authored by ZigZag3143& JMH3143
    http://answers.microsoft.com/en-us/windows/wiki/windows_other-system/driver-verifier-tracking-down-a-mis-behaving/f5cb4faf-556b-4b6d-95b3-c48669e4c983
    Symbol search path is: SRV*c:\symbols*http://msdl.microsoft.com/download/symbols
    Executable search path is:
    Windows 7 Kernel Version 9600 MP (4 procs) Free x64
    Product: WinNt, suite: TerminalServer SingleUserTS
    Built by: 9600.17668.amd64fre.winblue_r8.150127-1500
    Machine Name:
    Kernel base = 0xfffff803`37c0a000 PsLoadedModuleList = 0xfffff803`37ee3250
    Debug session time: Thu Mar 26 06:33:15.079 2015 (UTC - 4:00)
    System Uptime: 0 days 5:24:33.782
    Loading Kernel Symbols
    Loading User Symbols
    Loading unloaded module list
    * Bugcheck Analysis *
    Use !analyze -v to get detailed debugging information.
    BugCheck 3B, {c0000005, fffff80337ce402c, ffffd001402ecf20, 0}
    Probably caused by : ntkrnlmp.exe ( nt!KxWaitForLockOwnerShipWithIrql+14 )
    Followup: MachineOwner
    3: kd> !analyze -v
    * Bugcheck Analysis *
    SYSTEM_SERVICE_EXCEPTION (3b)
    An exception happened while executing a system service routine.
    Arguments:
    Arg1: 00000000c0000005, Exception code that caused the bugcheck
    Arg2: fffff80337ce402c, Address of the instruction which caused the bugcheck
    Arg3: ffffd001402ecf20, Address of the context record for the exception that caused the bugcheck
    Arg4: 0000000000000000, zero.
    Debugging Details:
    EXCEPTION_CODE: (NTSTATUS) 0xc0000005 - The instruction at 0x%08lx referenced memory at 0x%08lx. The memory could not be %s.
    FAULTING_IP:
    nt!KxWaitForLockOwnerShipWithIrql+14
    fffff803`37ce402c 48890a mov qword ptr [rdx],rcx
    CONTEXT: ffffd001402ecf20 -- (.cxr 0xffffd001402ecf20)
    rax=0000000000000000 rbx=0000000000000000 rcx=ffffd001402ed9b0
    rdx=0000800000000000 rsi=000000007eedc000 rdi=ffffd001402ed9b0
    rip=fffff80337ce402c rsp=ffffd001402ed950 rbp=0000000000000000
    r8=ffffd001402eda10 r9=0000000000000000 r10=fffff960002a85d8
    r11=000000007eeda000 r12=0000000000000000 r13=0000000000000000
    r14=ffffe000b3cb2880 r15=0000000000010001
    iopl=0 nv up di pl zr na po nc
    cs=0010 ss=0018 ds=002b es=002b fs=0053 gs=002b efl=00010046
    nt!KxWaitForLockOwnerShipWithIrql+0x14:
    fffff803`37ce402c 48890a mov qword ptr [rdx],rcx ds:002b:00008000`00000000=????????????????
    Resetting default scope
    CUSTOMER_CRASH_COUNT: 1
    DEFAULT_BUCKET_ID: VISTA_DRIVER_FAULT
    BUGCHECK_STR: 0x3B
    PROCESS_NAME: Steam.exe
    CURRENT_IRQL: 0
    LAST_CONTROL_TRANSFER: from 0000000000000000 to fffff80337ce402c
    STACK_TEXT:
    ffffd001`402ed950 00000000`00000000 : 00000000`00000000 00000000`00000000 00000000`00000000 00000000`00000000 : nt!KxWaitForLockOwnerShipWithIrql+0x14
    FOLLOWUP_IP:
    nt!KxWaitForLockOwnerShipWithIrql+14
    fffff803`37ce402c 48890a mov qword ptr [rdx],rcx
    SYMBOL_STACK_INDEX: 0
    SYMBOL_NAME: nt!KxWaitForLockOwnerShipWithIrql+14
    FOLLOWUP_NAME: MachineOwner
    MODULE_NAME: nt
    IMAGE_NAME: ntkrnlmp.exe
    DEBUG_FLR_IMAGE_TIMESTAMP: 54c832b2
    STACK_COMMAND: .cxr 0xffffd001402ecf20 ; kb
    FAILURE_BUCKET_ID: X64_0x3B_nt!KxWaitForLockOwnerShipWithIrql+14
    BUCKET_ID: X64_0x3B_nt!KxWaitForLockOwnerShipWithIrql+14
    Followup: MachineOwner
    3: kd> lmsmnt
    start end module name
    fffff801`92770000 fffff801`927f8000 ACPI ACPI.sys Mon Oct 06 23:29:50 2014 (54335E2E)
    fffff801`9274d000 fffff801`92765000 acpiex acpiex.sys Thu Aug 22 07:37:47 2013 (5215F80B)
    fffff801`93a39000 fffff801`93acb000 afd afd.sys Thu May 29 23:03:01 2014 (5387F4E5)
    fffff801`93bc7000 fffff801`93bde000 ahcache ahcache.sys Thu Dec 11 19:51:20 2014 (548A3C08)
    fffff801`94000000 fffff801`9401e000 amdppm amdppm.sys Thu Aug 22 04:46:34 2013 (5215CFEA)
    fffff960`00b0a000 fffff960`00b69000 ATMFD ATMFD.DLL unavailable (00000000)
    fffff801`939bd000 fffff801`939cf000 BasicDisplay BasicDisplay.sys Thu Aug 22 07:39:31 2013 (5215F873)
    fffff801`93570000 fffff801`9357e000 BasicRender BasicRender.sys Sat Feb 22 07:14:02 2014 (5308948A)
    fffff801`93568000 fffff801`93570000 Beep Beep.SYS Thu Aug 22 07:40:24 2013 (5215F8A8)
    fffff801`925b0000 fffff801`925ba000 BOOTVID BOOTVID.dll Thu Aug 22 07:40:26 2013 (5215F8AA)
    fffff801`9534e000 fffff801`9536e000 bowser bowser.sys Thu Aug 22 07:38:38 2013 (5215F83E)
    fffff801`96bef000 fffff801`96bf6000 CAM_Client_V2 CAM_Client_V2.sys Sat Jul 26 09:29:37 2008 (488B26C1)
    fffff960`00825000 fffff960`0085f000 cdd cdd.dll unavailable (00000000)
    fffff801`92400000 fffff801`92488000 CI CI.dll Fri Dec 05 22:23:28 2014 (548276B0)
    fffff801`93487000 fffff801`934dd000 CLASSPNP CLASSPNP.SYS Wed Oct 08 01:22:07 2014 (5434C9FF)
    fffff801`92518000 fffff801`92579000 CLFS CLFS.SYS Wed Mar 19 04:12:20 2014 (53295164)
    fffff801`92888000 fffff801`92914000 cng cng.sys Tue Jan 13 21:29:05 2015 (54B5D471)
    fffff801`93dee000 fffff801`93dfd000 CompositeBus CompositeBus.sys Thu Aug 22 07:38:48 2013 (5215F848)
    fffff801`96b8c000 fffff801`96b9c000 condrv condrv.sys Thu Aug 22 07:40:17 2013 (5215F8A1)
    fffff801`96be5000 fffff801`96bef000 cpuz138_x64 cpuz138_x64.sys Thu Nov 27 06:16:46 2014 (5477081E)
    fffff801`934dd000 fffff801`934f2000 crashdmp crashdmp.sys Thu Aug 22 07:40:03 2013 (5215F893)
    fffff801`93c49000 fffff801`93cd7000 csc csc.sys Tue Oct 28 22:46:49 2014 (54505519)
    fffff801`93ba1000 fffff801`93bc7000 dfsc dfsc.sys Thu Mar 06 04:22:50 2014 (53183E6A)
    fffff801`925ba000 fffff801`925d6000 disk disk.sys Thu Aug 22 07:39:47 2013 (5215F883)
    fffff801`93fc0000 fffff801`93fdc000 drmk drmk.sys Tue Oct 28 22:47:38 2014 (5450554A)
    fffff801`94cdf000 fffff801`94d27000 dtsoftbus01 dtsoftbus01.sys Fri Feb 21 04:49:36 2014 (53072130)
    fffff801`94dd8000 fffff801`94de4000 dump_diskdump dump_diskdump.sys Thu Aug 22 07:40:18 2013 (5215F8A2)
    fffff801`94de4000 fffff801`94dfa000 dump_dumpfve dump_dumpfve.sys Sat Feb 22 07:14:48 2014 (530894B8)
    fffff801`9344c000 fffff801`93469000 dump_storahci dump_storahci.sys Thu Aug 22 07:40:39 2013 (5215F8B7)
    fffff801`9382b000 fffff801`939ab000 dxgkrnl dxgkrnl.sys Tue Oct 28 22:46:45 2014 (54505515)
    fffff801`9357e000 fffff801`935e1000 dxgmms1 dxgmms1.sys Tue Oct 28 22:46:30 2014 (54505506)
    fffff801`92b38000 fffff801`92b52000 EhStorClass EhStorClass.sys Thu Aug 22 07:38:15 2013 (5215F827)
    fffff801`94b68000 fffff801`94ba1000 fastfat fastfat.SYS Thu Aug 22 07:40:18 2013 (5215F8A2)
    fffff801`92bae000 fffff801`92bc4000 fileinfo fileinfo.sys Sat Feb 22 07:13:10 2014 (53089456)
    fffff801`92b52000 fffff801`92bae000 fltmgr fltmgr.sys Mon Aug 25 22:25:16 2014 (53FBF00C)
    fffff801`92e99000 fffff801`92ea4000 Fs_Rec Fs_Rec.sys Thu Aug 22 04:46:33 2013 (5215CFE9)
    fffff801`93316000 fffff801`933ab000 fvevol fvevol.sys Mon Apr 07 18:25:31 2014 (534325DB)
    fffff801`93285000 fffff801`932f1000 fwpkclnt fwpkclnt.sys Tue Oct 28 22:46:11 2014 (545054F3)
    fffff803`3839e000 fffff803`3840e000 hal hal.dll Sun Jun 01 18:49:12 2014 (538BADE8)
    fffff801`94a4c000 fffff801`94a65000 HDAudBus HDAudBus.sys Thu Jul 24 07:45:39 2014 (53D0F1E3)
    fffff801`94c78000 fffff801`94cde000 HdAudio HdAudio.sys Thu Aug 22 07:38:19 2013 (5215F82B)
    fffff801`934f2000 fffff801`93511000 HIDCLASS HIDCLASS.SYS Thu Mar 06 04:24:40 2014 (53183ED8)
    fffff801`94dd0000 fffff801`94dd7f00 HIDPARSE HIDPARSE.SYS Thu Aug 22 07:40:26 2013 (5215F8AA)
    fffff801`93fe7000 fffff801`93ff5000 hidusb hidusb.sys Thu Mar 06 04:24:14 2014 (53183EBE)
    fffff801`95254000 fffff801`9534e000 HTTP HTTP.sys Mon Jan 27 14:48:02 2014 (52E6B7F2)
    fffff801`92fec000 fffff801`92ffb000 intelpep intelpep.sys Wed Oct 08 03:33:44 2014 (5434E8D8)
    fffff801`92ac7000 fffff801`92ad9000 kbdclass kbdclass.sys Mon Oct 06 23:29:50 2014 (54335E2E)
    fffff801`93469000 fffff801`93477000 kbdhid kbdhid.sys Mon Oct 06 23:29:43 2014 (54335E27)
    fffff803`36d76000 fffff803`36d7f000 kd kd.dll Thu Aug 22 07:40:43 2013 (5215F8BB)
    fffff801`93e5a000 fffff801`93e65000 kdnic kdnic.sys Thu Aug 22 07:38:26 2013 (5215F832)
    fffff801`93e0c000 fffff801`93e5a000 ks ks.sys Fri Jul 04 08:58:59 2014 (53B6A513)
    fffff801`92e6d000 fffff801`92e89000 ksecdd ksecdd.sys Tue Oct 28 22:47:36 2014 (54505548)
    fffff801`92fbb000 fffff801`92fec000 ksecpkg ksecpkg.sys Sun Jan 11 22:01:17 2015 (54B338FD)
    fffff801`93c41000 fffff801`93c46300 ksthunk ksthunk.sys Thu Aug 22 07:39:31 2013 (5215F873)
    fffff801`94ed6000 fffff801`94eea000 lltdio lltdio.sys Thu Aug 22 07:36:18 2013 (5215F7B2)
    fffff801`94eb2000 fffff801`94ed6000 luafv luafv.sys Sat Feb 22 07:14:25 2014 (530894A1)
    fffff801`924ef000 fffff801`9250a000 mcupdate_AuthenticAMD mcupdate_AuthenticAMD.dll Thu Aug 22 08:39:42 2013 (5216068E)
    fffff801`94e97000 fffff801`94ea5000 monitor monitor.sys Thu Aug 22 07:36:37 2013 (5215F7C5)
    fffff801`94e6e000 fffff801`94e7e000 mouclass mouclass.sys Mon Oct 06 23:29:43 2014 (54335E27)
    fffff801`94e61000 fffff801`94e6e000 mouhid mouhid.sys Mon Oct 06 23:29:43 2014 (54335E27)
    fffff801`929b5000 fffff801`929d0000 mountmgr mountmgr.sys Mon Oct 06 21:18:16 2014 (54333F58)
    fffff801`9536e000 fffff801`95385000 mpsdrv mpsdrv.sys Tue Oct 28 22:45:31 2014 (545054CB)
    fffff801`95385000 fffff801`953f2000 mrxsmb mrxsmb.sys Wed Oct 08 03:32:08 2014 (5434E878)
    fffff801`94f8a000 fffff801`94fd5000 mrxsmb10 mrxsmb10.sys Thu Mar 06 04:19:36 2014 (53183DA8)
    fffff801`95200000 fffff801`95238000 mrxsmb20 mrxsmb20.sys Sat Sep 27 00:59:28 2014 (54264430)
    fffff801`939e3000 fffff801`939ef000 Msfs Msfs.SYS Thu Aug 22 07:40:24 2013 (5215F8A8)
    fffff801`92922000 fffff801`9292c000 msisadrv msisadrv.sys Thu Aug 22 07:39:03 2013 (5215F857)
    fffff801`96b9c000 fffff801`96bb2000 mslldp mslldp.sys Tue Oct 28 22:45:39 2014 (545054D3)
    fffff801`92488000 fffff801`924e5000 msrpc msrpc.sys Thu Aug 22 07:39:22 2013 (5215F86A)
    fffff801`93de2000 fffff801`93dee000 mssmbios mssmbios.sys Thu Aug 22 07:39:41 2013 (5215F87D)
    fffff801`93000000 fffff801`93017000 mup mup.sys Thu Aug 22 07:40:28 2013 (5215F8AC)
    fffff801`92ea4000 fffff801`92fbb000 ndis ndis.sys Mon Feb 02 19:03:15 2015 (54D01043)
    fffff801`94f5e000 fffff801`94f72000 ndisuio ndisuio.sys Thu Aug 22 07:37:34 2013 (5215F7FE)
    fffff801`93fdc000 fffff801`93fe7000 NdisVirtualBus NdisVirtualBus.sys Thu Aug 22 07:36:25 2013 (5215F7B9)
    fffff801`94fd5000 fffff801`94ff2000 Ndu Ndu.sys Tue Oct 28 22:45:16 2014 (545054BC)
    fffff801`93b0d000 fffff801`93b1e000 netbios netbios.sys Tue Oct 28 22:47:23 2014 (5450553B)
    fffff801`93400000 fffff801`9344c000 netbt netbt.sys Thu Aug 22 07:37:01 2013 (5215F7DD)
    fffff801`92a43000 fffff801`92abb000 NETIO NETIO.SYS Tue Sep 09 04:35:50 2014 (540EBBE6)
    fffff801`935e1000 fffff801`935f4000 networx networx.sys Wed Jul 23 09:03:28 2014 (53CFB2A0)
    fffff801`939cf000 fffff801`939e3000 Npfs Npfs.SYS Thu Aug 22 07:40:25 2013 (5215F8A9)
    fffff801`93c35000 fffff801`93c41000 npsvctrig npsvctrig.sys Thu Aug 22 07:38:22 2013 (5215F82E)
    fffff801`93c27000 fffff801`93c35000 nsiproxy nsiproxy.sys Tue Oct 28 22:46:03 2014 (545054EB)
    fffff803`37c0a000 fffff803`3839e000 nt ntkrnlmp.exe Tue Jan 27 19:52:02 2015 (54C832B2)
    fffff801`92c73000 fffff801`92e6d000 Ntfs Ntfs.sys Fri Oct 10 20:35:55 2014 (54387B6B)
    fffff801`9355f000 fffff801`93568000 Null Null.SYS Thu Aug 22 07:40:24 2013 (5215F8A8)
    fffff801`93a00000 fffff801`93a34000 nvhda64v nvhda64v.sys Thu Oct 09 13:02:27 2014 (5436BFA3)
    fffff801`9403a000 fffff801`94a4c000 nvlddmkm nvlddmkm.sys Thu Feb 05 13:01:37 2015 (54D3B001)
    fffff801`96bb2000 fffff801`96bbc000 NvStreamKms NvStreamKms.sys Mon Jan 12 12:56:42 2015 (54B40ADA)
    fffff801`94028000 fffff801`94035000 nvvad64v nvvad64v.sys Thu Nov 20 10:33:54 2014 (546E09E2)
    fffff801`94ea5000 fffff801`94eb2000 nvvadarm nvvadarm.sys Thu Feb 05 13:24:46 2015 (54D3B56E)
    fffff801`94eea000 fffff801`94f5e000 nwifi nwifi.sys Tue Oct 28 22:45:41 2014 (545054D5)
    fffff801`93acb000 fffff801`93af5000 pacer pacer.sys Tue Oct 28 22:45:30 2014 (545054CA)
    fffff801`94bb9000 fffff801`94bd5000 parport parport.sys Thu Aug 22 07:40:02 2013 (5215F892)
    fffff801`9299d000 fffff801`929b5000 partmgr partmgr.sys Wed Oct 08 03:34:42 2014 (5434E912)
    fffff801`9292c000 fffff801`92974000 pci pci.sys Thu Jul 24 07:45:24 2014 (53D0F1D4)
    fffff801`92e89000 fffff801`92e99000 pcw pcw.sys Thu Aug 22 04:46:34 2013 (5215CFEA)
    fffff801`92981000 fffff801`9299d000 pdc pdc.sys Wed Oct 08 01:21:59 2014 (5434C9F7)
    fffff801`95c08000 fffff801`95cb1000 peauth peauth.sys Sat Feb 22 07:09:37 2014 (53089381)
    fffff801`93f79000 fffff801`93fc0000 portcls portcls.sys Tue Oct 28 22:46:35 2014 (5450550B)
    fffff801`9259b000 fffff801`925b0000 PSHED PSHED.dll Sat Sep 14 09:57:19 2013 (52346B3F)
    fffff801`93b31000 fffff801`93ba1000 rdbss rdbss.sys Tue Dec 17 02:21:22 2013 (52AFFB72)
    fffff801`94d3e000 fffff801`94d49000 rdpbus rdpbus.sys Thu Aug 22 07:38:52 2013 (5215F84C)
    fffff801`92c23000 fffff801`92c69000 rdyboost rdyboost.sys Sat Feb 22 07:13:40 2014 (53089474)
    fffff801`94f72000 fffff801`94f8a000 rspndr rspndr.sys Thu Aug 22 07:36:34 2013 (5215F7C2)
    fffff801`93ea1000 fffff801`93f79000 Rt630x64 Rt630x64.sys Tue Jul 15 22:56:14 2014 (53C5E9CE)
    fffff801`93be7000 fffff801`93bf6000 rzendpt rzendpt.sys Thu Sep 04 23:22:07 2014 (54092C5F)
    fffff801`95cb1000 fffff801`95cb8280 rzpmgrk rzpmgrk.sys Thu Apr 17 15:36:12 2014 (53502D2C)
    fffff801`95cb9000 fffff801`95cd6c80 rzpnk rzpnk.sys Fri Apr 11 16:45:28 2014 (53485468)
    fffff801`94e36000 fffff801`94e61000 rzudd rzudd.sys Thu Sep 04 23:22:11 2014 (54092C63)
    fffff801`93c00000 fffff801`93c27000 SCDEmu SCDEmu.SYS Wed Oct 08 09:09:34 2014 (5435378E)
    fffff801`95cd7000 fffff801`95ce2000 secdrv secdrv.SYS Wed Sep 13 09:18:38 2006 (4508052E)
    fffff801`94bef000 fffff801`94bfc000 serenum serenum.sys Thu Aug 22 07:40:17 2013 (5215F8A1)
    fffff801`94bd5000 fffff801`94bef000 serial serial.sys Thu Aug 22 07:40:08 2013 (5215F898)
    fffff801`93bde000 fffff801`93be7000 serscan serscan.sys Tue Oct 28 21:50:36 2014 (545047EC)
    fffff801`94e89000 fffff801`94e97000 SiLib SiLib.sys Thu Jul 15 18:08:26 2010 (4C3F86DA)
    fffff801`94e7e000 fffff801`94e89000 SiUSBXp SiUSBXp.sys Thu Jul 15 18:27:13 2010 (4C3F8B41)
    fffff801`92800000 fffff801`92869000 spaceport spaceport.sys Tue Oct 28 22:47:03 2014 (54505527)
    fffff801`96ad1000 fffff801`96b5f000 srv srv.sys Thu Jul 24 07:43:27 2014 (53D0F15F)
    fffff801`95d37000 fffff801`95de4000 srv2 srv2.sys Wed Oct 08 03:33:30 2014 (5434E8CA)
    fffff801`95ce2000 fffff801`95d25000 srvnet srvnet.sys Fri Jun 27 02:22:21 2014 (53AD0D9D)
    fffff801`929d0000 fffff801`929ed000 storahci storahci.sys Thu Aug 22 07:40:39 2013 (5215F8B7)
    fffff801`92ada000 fffff801`92b38000 storport storport.sys Wed Sep 24 22:47:07 2014 (5423822B)
    fffff801`94035000 fffff801`94036600 swenum swenum.sys Tue Oct 28 22:47:41 2014 (5450554D)
    fffff801`93019000 fffff801`93285000 tcpip tcpip.sys Tue Oct 28 22:47:30 2014 (54505542)
    fffff801`95d25000 fffff801`95d37000 tcpipreg tcpipreg.sys Thu Mar 06 04:19:59 2014 (53183DBF)
    fffff801`939ef000 fffff801`939fd000 TDI TDI.SYS Thu Aug 22 07:39:01 2013 (5215F855)
    fffff801`93800000 fffff801`93820000 tdx tdx.sys Thu Aug 22 07:36:34 2013 (5215F7C2)
    fffff801`92579000 fffff801`9259b000 tm tm.sys Thu Aug 22 07:39:33 2013 (5215F875)
    fffff801`94dbf000 fffff801`94dd0000 tosporte tosporte.sys Tue Jun 16 06:48:47 2009 (4A37788F)
    fffff801`93b1e000 fffff801`93b30b80 tosrfcom tosrfcom.sys Sun Nov 28 21:44:26 2010 (4CF3138A)
    fffff801`92c00000 fffff801`92c23000 Tpkd Tpkd.sys Sat Nov 17 10:18:06 2012 (50A7AAAE)
    fffff960`00767000 fffff960`00770000 TSDDD TSDDD.dll unavailable (00000000)
    fffff801`96b5f000 fffff801`96b8c000 tunnel tunnel.sys Thu Aug 22 07:35:45 2013 (5215F791)
    fffff801`94aba000 fffff801`94aec000 ucx01000 ucx01000.sys Tue Oct 07 01:00:55 2014 (54337387)
    fffff801`93e90000 fffff801`93ea1000 umbus umbus.sys Thu Aug 22 07:38:59 2013 (5215F853)
    fffff801`93538000 fffff801`93555900 usbaudio usbaudio.sys Fri Dec 13 02:24:20 2013 (52AAB624)
    fffff801`93511000 fffff801`93538000 usbccgp usbccgp.sys Thu Jul 24 07:44:51 2014 (53D0F1B3)
    fffff801`94db3000 fffff801`94dbf000 USBD USBD.SYS Sat May 31 02:31:17 2014 (53897735)
    fffff801`94ba1000 fffff801`94bb9000 usbehci usbehci.sys Sat May 31 02:29:54 2014 (538976E2)
    fffff801`94d49000 fffff801`94db3000 usbhub usbhub.sys Thu Jul 24 07:45:29 2014 (53D0F1D9)
    fffff801`94c00000 fffff801`94c78000 UsbHub3 UsbHub3.sys Wed Oct 08 03:32:50 2014 (5434E8A2)
    fffff801`94aec000 fffff801`94af9000 usbohci usbohci.sys Thu Aug 22 07:39:27 2013 (5215F86F)
    fffff801`94af9000 fffff801`94b68000 USBPORT USBPORT.SYS Sat May 31 02:30:25 2014 (53897701)
    fffff801`94a65000 fffff801`94aba000 USBXHCI USBXHCI.SYS Tue Oct 07 01:00:56 2014 (54337388)
    fffff801`93cfd000 fffff801`93de2000 VBoxDrv VBoxDrv.sys Sat Oct 11 07:28:48 2014 (54391470)
    fffff801`93e65000 fffff801`93e90000 VBoxNetFlt VBoxNetFlt.sys Sat Oct 11 07:26:22 2014 (543913DE)
    fffff801`93cd7000 fffff801`93cfd000 VBoxUSBMon VBoxUSBMon.sys Sat Oct 11 07:26:22 2014 (543913DE)
    fffff801`92974000 fffff801`92981000 vdrvroot vdrvroot.sys Thu Aug 22 07:38:49 2013 (5215F849)
    fffff801`92869000 fffff801`9287e000 volmgr volmgr.sys Thu Aug 22 07:39:53 2013 (5215F889)
    fffff801`9260a000 fffff801`92669000 volmgrx volmgrx.sys Thu Aug 22 07:40:23 2013 (5215F8A7)
    fffff801`933ab000 fffff801`933fa000 volsnap volsnap.sys Wed Jun 18 18:41:28 2014 (53A21598)
    fffff801`93af5000 fffff801`93b0d000 vwififlt vwififlt.sys Wed Apr 30 02:43:46 2014 (53609BA2)
    fffff801`939ab000 fffff801`939bd000 watchdog watchdog.sys Sat Feb 22 07:14:39 2014 (530894AF)
    fffff801`9266d000 fffff801`9273c000 Wdf01000 Wdf01000.sys Thu Aug 22 07:38:56 2013 (5215F850)
    fffff801`92a00000 fffff801`92a43000 WdFilter WdFilter.sys Fri Jan 30 05:20:58 2015 (54CB5B0A)
    fffff801`9273c000 fffff801`9274d000 WDFLDR WDFLDR.SYS Thu Aug 22 07:39:03 2013 (5215F857)
    fffff801`96bbc000 fffff801`96bdb000 WdNisDrv WdNisDrv.sys Fri Jan 30 05:21:48 2015 (54CB5B3C)
    fffff801`9250a000 fffff801`92518000 werkernel werkernel.sys Thu Aug 22 07:40:24 2013 (5215F8A8)
    fffff801`932f1000 fffff801`93316000 wfplwfs wfplwfs.sys Tue Oct 28 22:45:53 2014 (545054E1)
    fffff960`0015f000 fffff960`00575000 win32k win32k.sys Wed Feb 25 18:26:26 2015 (54EE5A22)
    fffff801`94d27000 fffff801`94d2bd00 WmBEnum WmBEnum.sys Tue Apr 27 16:10:19 2010 (4BD744AB)
    fffff801`93ff5000 fffff801`93ffe180 WmFilter WmFilter.sys Tue Apr 27 16:10:19 2010 (4BD744AB)
    fffff801`9401e000 fffff801`94028000 wmiacpi wmiacpi.sys Thu Aug 22 07:40:04 2013 (5215F894)
    fffff801`92600000 fffff801`9260a000 WMILIB WMILIB.SYS Thu Aug 22 07:40:23 2013 (5215F8A7)
    fffff801`96bdb000 fffff801`96bdd500 WmVirHid WmVirHid.sys Tue Apr 27 16:08:53 2010 (4BD74455)
    fffff801`94d2c000 fffff801`94d3d480 WmXlCore WmXlCore.sys Tue Apr 27 16:09:26 2010 (4BD74476)
    fffff801`92bc4000 fffff801`92bef000 Wof Wof.sys Thu Mar 13 04:27:29 2014 (53216BF1)
    fffff801`92765000 fffff801`92770000 WppRecorder WppRecorder.sys Thu Aug 22 07:39:40 2013 (5215F87C)
    Unloaded modules:
    fffff801`96bde000 fffff801`96be5000 CAM_Client_V
    Timestamp: unavailable (00000000)
    Checksum: 00000000
    ImageSize: 00007000
    fffff801`934f2000 fffff801`934fe000 dump_storpor
    Timestamp: unavailable (00000000)
    Checksum: 00000000
    ImageSize: 0000C000
    fffff801`934fe000 fffff801`9351b000 dump_storahc
    Timestamp: unavailable (00000000)
    Checksum: 00000000
    ImageSize: 0001D000
    fffff801`9351b000 fffff801`93531000 dump_dumpfve
    Timestamp: unavailable (00000000)
    Checksum: 00000000
    ImageSize: 00016000
    fffff801`93dee000 fffff801`93dfe000 dam.sys
    Timestamp: unavailable (00000000)
    Checksum: 00000000
    ImageSize: 00010000
    fffff801`93531000 fffff801`9355f000 cdrom.sys
    Timestamp: unavailable (00000000)
    Checksum: 00000000
    ImageSize: 0002E000
    fffff801`92914000 fffff801`92922000 WdBoot.sys
    Timestamp: unavailable (00000000)
    Checksum: 00000000
    ImageSize: 0000E000
    fffff801`92abb000 fffff801`92ac7000 hwpolicy.sys
    Timestamp: unavailable (00000000)
    Checksum: 00000000
    ImageSize: 0000C000

  • IPhoto question-I NEVER look at my events, and I keep running our of space can I delete the "Events" of my IPhoto?

    IPhoto question-I NEVER look at my events, and I keep running our of space can I delete the "Events" of my IPhoto?

    No, you can't delete all your events. You could merge them all together so you'd have just one, but doing so would hardly save any space, just as putting all your documents in a single folder would hardly save any space. It's the documents and photos themselves, not the containers and subcontainers in which they are organized, that really take up space.
    If you have additional iPhoto questions, I suggest posting them in the iPhoto forum where the real gurus hang out.

  • Can you please take a look at my TM Buddy log and opine on what the problem is?

    Pondini,
    Can you please take a look at my TM Buddy log and opine on what the problem is?  I'm stuck in the "Preparing Backup" phase for what must be hours now.  My last successful backup was this morning at 7:16 am.  I did do a series of Software Update this morning, one of which, a security update I believe, required a restart.
    I'm confused as to what the issue is, and how to get everything back to "it just works".
    Many thanks in advance.
    Starting standard backup
    Backing up to: /Volumes/JDub's Drop Zone/Backups.backupdb
    Error: (5) getxattr for key:com.apple.backupd.SnapshotState path:/Volumes/JDub's Drop Zone/Backups.backupdb/Jason Wisniowski’s iMac/2013-05-30-002104
    Error: (5) getxattr for key:com.apple.backupd.SnapshotContainer path:/Volumes/JDub's Drop Zone/Backups.backupdb/Jason Wisniowski’s iMac/2013-05-30-002104
    Error: (5) getxattr for key:com.apple.backupd.SnapshotState path:/Volumes/JDub's Drop Zone/Backups.backupdb/Jason Wisniowski’s iMac/2013-05-30-002104
    Error: (5) getxattr for key:com.apple.backupd.SnapshotContainer path:/Volumes/JDub's Drop Zone/Backups.backupdb/Jason Wisniowski’s iMac/2013-05-30-002104
    Error: (5) getxattr for key:com.apple.backupd.SnapshotState path:/Volumes/JDub's Drop Zone/Backups.backupdb/Jason Wisniowski’s iMac/2013-05-30-002104
    Error: (5) getxattr for key:com.apple.backupd.SnapshotContainer path:/Volumes/JDub's Drop Zone/Backups.backupdb/Jason Wisniowski’s iMac/2013-05-30-002104
    Error: (5) getxattr for key:com.apple.backupd.SnapshotState path:/Volumes/JDub's Drop Zone/Backups.backupdb/Jason Wisniowski’s iMac/2013-05-30-002104
    Error: (5) getxattr for key:com.apple.backupd.SnapshotContainer path:/Volumes/JDub's Drop Zone/Backups.backupdb/Jason Wisniowski’s iMac/2013-05-30-002104
    Error: (5) getxattr for key:com.apple.backupd.SnapshotState path:/Volumes/JDub's Drop Zone/Backups.backupdb/Jason Wisniowski’s iMac/2013-05-30-002104
    Error: (5) getxattr for key:com.apple.backupd.SnapshotContainer path:/Volumes/JDub's Drop Zone/Backups.backupdb/Jason Wisniowski’s iMac/2013-05-30-002104
    Error: (5) getxattr for key:com.apple.backupd.SnapshotState path:/Volumes/JDub's Drop Zone/Backups.backupdb/Jason Wisniowski’s iMac/2013-05-30-002104
    Error: (5) getxattr for key:com.apple.backupd.SnapshotContainer path:/Volumes/JDub's Drop Zone/Backups.backupdb/Jason Wisniowski’s iMac/2013-05-30-002104
    Error: (5) getxattr for key:com.apple.backupd.SnapshotState path:/Volumes/JDub's Drop Zone/Backups.backupdb/Jason Wisniowski’s iMac/2013-05-30-002104
    Error: (5) getxattr for key:com.apple.backupd.SnapshotContainer path:/Volumes/JDub's Drop Zone/Backups.backupdb/Jason Wisniowski’s iMac/2013-05-30-002104
    Error: (5) getxattr for key:com.apple.backupd.SnapshotState path:/Volumes/JDub's Drop Zone/Backups.backupdb/Jason Wisniowski’s iMac/2013-05-30-002104
    Error: (5) getxattr for key:com.apple.backupd.SnapshotContainer path:/Volumes/JDub's Drop Zone/Backups.backupdb/Jason Wisniowski’s iMac/2013-05-30-002104
    Event store UUIDs don't match for volume: Area 420
    Event store UUIDs don't match for volume: Macintosh HD
    Error: (5) getxattr for key:com.apple.backupd.SnapshotSt

    Time Machine can't read some data it needs from your backups (each of those date-stamps is one of your backups). 
    That's usually a problem with the drive itself, but could be the directory on it. First be sure all plugs are snug and secure, then see if you can repair it, per #A5 in Time Machine - Troubleshooting. 
    If that doesn't help, post back with the results.  Also either tell us what kind of Mac you have, what version of OSX you're running, or post that to your Profile, so it's accessible.  
    This is unrelated to the original post here, so I'm going to ask the Hosts to split it off into a new thread.  Since you've posted in the Lion forum, I'll assume that's what you're running.  You should get a notice from them

Maybe you are looking for

  • Port 993 error message, now can't set up MacMail for GMail account.

    I've been using MacMail for years without a problem. Recently a little exclamation point came up with an error message indicating that the server couldn't connect with the 993 port for my Gmail account. After trying to update my software, restart the

  • Some iPhoto images show an exclamation mark

    I am not sure if this happened because of the recent 9.1.5 iPhoto update, but some of the images have gone awol and instead turn up as a blank screen with an exclamation point. Any ideas, suggestions, advice? I have not deleted any of the images that

  • Sorting and Moving columns in 11g

    Hi all, In 11g When you point the mouse cursor over a column in table or pivot view you can sort or move the column. Is there anyway to get rid of this default behavior? I want to disable those options. There is an option when right clicking on the c

  • XCode 4 Problems

    Is anyone else experiencing consistent crashes in XCode 4? I can duplicate the problem by setting a breakpoint in a multi-threaded app, waiting 40 seconds after the breakpoint is hit, and clicking another tab. The CPU utilization goes to 100%, and I

  • Statements stuck in Temporary tablespaces

    Hi! I'm facing an intriguing issue with my database. There are some statements (selects and updates) that seems to be stucked in my TEMP tablespace. The sessions are inactive, but they are still showing on v$sort_usage and filling up my temp tablespa