ObjectNotFoundException still does not show object class

I know I complained before but I want to emphasize it again
Without missing object class it is very very difficult to figure out whats
going on!!!
Please, please fix it!!!!
Exception in thread "main" javax.jdo.JDOUserException:
kodo.util.ObjectNotFoundException: The instance "NO2" does not exist in the
data store.[NO2]

Straight forward getObjectById causes this:
2422 TRACE [main] kodo.jdbc.SQL - <t 24347419, conn 30638546> [156 ms]
executing prepstmnt 3874616 SELECT t0.JDO_LOCK, t0.DESCRIPTION FROM
OBJECT_CLASS t0 WHERE t0.OBJECT_CLASS_CODE = ? [params=(String) xxx]
Exception in thread "main" kodo.util.ObjectNotFoundException: The instance
"xxx" does not exist in the data store.[xxx]
at
kodo.runtime.PersistenceManagerImpl.getObjectById(PersistenceManagerImpl.java:2009)
at
kodo.runtime.PersistenceManagerImpl.getObjectById(PersistenceManagerImpl.java:1924)
at peacetech.nci.cs.jdo.CsJDOHelper.getObjectClass(CsJDOHelper.java:1626)
at peacetech.nci.cs.jdo.CsJDOHelper.getObjectClass(CsJDOHelper.java:1664)
at peacetech.nci.cs.LoadData.main(LoadData.java:224)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:585)
at com.intellij.rt.execution.application.AppMain.main(AppMain.java:78)
Another example:
Exception in thread "main" kodo.util.OptimisticVerificationException: The
instance "33.33" does not exist in the data store.[33.33]
at
kodo.runtime.AttachManager.getOptimisticVerificationException(AttachManager.java:184)
at
kodo.runtime.AttachManager.getOptimisticVerificationException(AttachManager.java:198)
at kodo.runtime.AttachManager.attachAll(AttachManager.java:79)
at
kodo.runtime.PersistenceManagerImpl.attachAll(PersistenceManagerImpl.java:4356)
at
peacetech.nci.cs.DetachTest.testNewObject(DetachTest.java:114)
at peacetech.nci.cs.DetachTest.main(DetachTest.java:171)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:585)
at
com.intellij.rt.execution.application.AppMain.main(AppMain.java:78)

Similar Messages

  • Apple map still does not show traffic

    Apple map still does not show traffic

    Hi there,
    I have the same issues with my 4S, can anybody help? :(
    The maps just turned a beidge color and slightly green when it set into standard mode, but it's just fine with hybrid &amp; satellite modes.
    Oh, the photo maps also appears as the maps on standard mode.

  • How do I get the none button to pop up so u don't have to have a credit card for apps? I owe nothing for apps from Apple, NOTHING!? And it still does not show the option "none". If it helps the card I have is a debit.

    How do I get the none button to pop up so u don't have to have a credit card for apps? I owe nothing for apps from Apple, NOTHING!? And it still does not show the option "none". If it helps the card I have is a debit.

    I'm happy you figured it out and just try to keep in mind that not everyone you talk to at support will give the same advice or have the same knowledge. Just like those who contribute to these forums. Sometimes Google is your best friend.
    I agree that Apple could probably make it easier, but as of yet prefer security over freedom. (sound famaliar?)
    Anyway, if you choose to do so, you can leave feedback here:
    Apple.com Feedback
    Apple Support Feedback
    Developer Feedback
    Product Feedback
    QuickTime Feedback
    Search Feedback

  • TS1538 My ipod touch will not connect to itunes. I reset the ipod touch. uninstalled itunes and installed it. Turned off firewall however the device manager still does not show Apple mobile device usb. What should i do next? I have windows 7.

    My ipod will not connect to itunes. I reset the ipod touch. uninstalled itunes and installed it. Turned off firewall however the device manager still does not show Apple mobile device usb. What should i do next? I have windows 7.

    See:
    iOS: Device not recognized in iTunes for Windows
    I would start with
    Removing and reinstalling iTunes, QuickTime, and other software components for Windows Vista or Windows 7

  • I add components to contentPane, but JFrame still does not show them

    I converted a small game I was making from AWT to Swing.(The game is just MineSweeper.) I made all the necessary adjustments like, Button to JButton and add() to getContentPane().add(), but when I show the JFrame, it does not show any components that I added. I have run test programs to see if I am adding the components correctly and they work.
    I print out the number of components contained in the frame by using getComponentCount() and the number is correct. It just will not show up in the JFrame. I have tried everything I can think of, no matter how strange and it still will not show the components.
    I have attached all the code to the bottom of this message. Can someone please take a look and see what I am missing.
    Thanks.
    Here's the code. The main file is at the end and is the one causing the problems. All the rest is just support stuff and should not be relavent, but I included it in case I missed something there.
    //Timer is just a custom timer
    import java.util.Date;
    public class Timer {
         Date curr;
         public Timer() {
              curr=new Date();
         public void start() {
              curr=new Date();
         public int getSeconds() {
              return (int)(((new Date().getTime())-curr.getTime())/1000);
    //Cover subclasses JButton for initial look
    import java.awt.*;
    import javax.swing.*;
    public class Cover extends JButton {
         Dimension size;
         public Cover() {
              super("");
              size=new Dimension(20,20);
              setSize(size);
         public Cover(String l) {
              super("");
              size=new Dimension(20,20);
              setSize(size);
         public void setSize(Dimension s) {
              super.setSize(size);
         public Dimension getPreferredSize() {
              return size.getSize();
         public Dimension getMinimumSize() {
              return size.getSize();
         public Dimension getMaximumSize() {
              return size.getSize();
    //Flag subclasses JButton to flag a mine
    import java.awt.*;
    import javax.swing.*;
    public class Flag extends JButton {
         Dimension size;
         public Flag() {
              super("F");
              size=new Dimension(20,20);
         public Flag(String l) {
              super("F");
              size=new Dimension(20,20);
         public void setSize(Dimension s) {
              super.setSize(size);
         public Dimension getPreferredSize() {
              return size.getSize();
         public Dimension getMinimumSize() {
              return size.getSize();
         public Dimension getMaximumSize() {
              return size.getSize();
    //Reveal subclasses JPanel to show what's underneath
    import java.awt.*;
    import javax.swing.*;
    public class Reveal extends JPanel {
         Dimension size;
         int number;
         Color color[];
         public Reveal(int n) {
              super();
              size=new Dimension(20,20);
              number=n;
              color=new Color[10];
              color[0]=Color.black;
              color[1]=Color.orange;
              color[2]=Color.cyan;
              color[3]=Color.yellow;
              color[4]=Color.green;
              color[5]=Color.magenta;
              color[6]=Color.blue;
              color[7]=Color.pink;
              color[8]=Color.darkGray;
              color[9]=Color.red;
              //for(int x=0;x<10;x++) {
              //     System.out.println(x+"="+color[x]);
              setBackground(Color.black);
         public void paintComponent(Graphics g) {
              int width=getWidth();
              int height=getHeight();
              FontMetrics fm=g.getFontMetrics();
              int fw=0;
              int fh=fm.getAscent();
              g.setColor(color[number]);
              if(number==9) {
                   fw=fm.stringWidth("M");
                   g.drawString("M",width/2-(fw/2),height/2+(fh/2));
              else if(number!=0) {
                   fw=fm.stringWidth(""+number);
                   g.drawString(""+number,width/2-(fw/2),height/2+(fh/2));
              g.setColor(Color.white);
              g.drawRect(1,1,width-2,height-2);
              //System.out.println("number="+number);
         public void setNumber(int n) {
              number=n;
         public int getNumber() {
              return number;
         public Dimension getPreferredSize() {
              return size.getSize();
         public Dimension getMinimumSize() {
              return size.getSize();
         public Dimension getMaximumSize() {
              return size.getSize();
    //MineSweeper just launches the program and subclasses JFrame
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class MineSweeper extends JFrame implements ComponentListener {
         public MineSweeper(String s) {
              super(s);
              addComponentListener(this);
         public void quit() {
              System.exit(0);
         public void componentHidden(ComponentEvent e){}
         public void componentMoved(ComponentEvent e){}
         public void componentResized(ComponentEvent e){
              System.out.println("resized");
              MineSweeper temp=(MineSweeper)e.getSource();
              System.out.println("count="+temp.getContentPane().getComponentCount());
         public void componentShown(ComponentEvent e){}
         public static void main(String args[]) {
              MineSweeper t=new MineSweeper("Inside Moves");
              t.addWindowListener(new WindowAdapter() {
                   public void windowClosing(WindowEvent e) {
                        System.exit(0);
              GameManager manager=new GameManager(t);
    //GameManager is the main program. This is where the JFrame is realized
    import java.awt.*;
    import java.awt.event.*;
    import java.util.*;
    import javax.swing.*;
    public class GameManager implements MouseListener, ActionListener, Runnable {
         JPanel display;
         JPanel gameInfo;
         MineSweeper screen;
         JButton reset;
         JTextField tMine,time;
         Container pane;
         int clickX,clickY;
         int minesLeft;
         int gridX[],gridY[],mine[];
         static final int MAX_X=30;
         static final int MAX_Y=24;
         static final int MAX_MINE=667;
         JComponent grid[][];
         int board[][];
         int number[][];
         final static int OB=64;
         final static int BLANK=0;
         final static int MINE=1;
         final static int REVEAL=128;
         int level;
         final static int EASY=0;
         final static int MEDIUM=1;
         final static int HARD=2;
         final static int CUSTOM=3;
         int state;
         final static int START=1;
         final static int PLAYING=2;
         final static int DONE=3;
         Timer timer;
         int timeDisp;
         public GameManager(MineSweeper s) {
              screen=s;
              pane=screen.getContentPane();
              pane.setLayout(new BorderLayout());
              display=new JPanel();
              gameInfo=new JPanel(new GridLayout(1,3));
              reset=new JButton("Reset");
              tMine=new JTextField(20);
              time=new JTextField("0",20);
              grid=new JComponent[MAX_X+2][MAX_Y+2];
              board=new int[MAX_X+2][MAX_Y+2];
              number=new int[MAX_X+2][MAX_Y+2];
              gridX=new int[4];
              gridY=new int[4];
              mine=new int[4];
              level=EASY;
              gridX[0]=8;
              gridY[0]=8;
              mine[0]=10;
              gridX[1]=16;
              gridY[1]=16;
              mine[1]=40;
              gridX[2]=30;
              gridY[2]=16;
              mine[2]=99;
              gridX[3]=0;
              gridY[3]=0;
              mine[3]=0;
              minesLeft=mine[level];
              tMine.setText(""+minesLeft);
              state=START;
              timer=new Timer();
              reset.addActionListener(this);
              setup();
              Thread t=new Thread(this);
              t.start();
              /*System.out.println("count="+pane.getComponentCount());
              Component cc[]=pane.getComponents();
              for(int i=0;i<cc.length;i++) {
                   System.out.println("cc="+cc);
         public void setup() {
              boolean done;
              for(int x=0;x<=gridX[level]+1;x++) {
                   for(int y=0;y<=gridY[level]+1;y++) {
                        if(x==0 || x==gridX[level]+1 || y==0 || y==gridY[level]+1) {
                             board[x][y]=OB;
                             number[x][y]=-1;
                        else {
                             board[x][y]=BLANK;
              for(int i=0;i<mine[level];i++) {
                   done=false;
                   while(!done) {
                        int x=(int)((Math.random()*gridX[level])+1.0);
                        int y=(int)((Math.random()*gridY[level])+1.0);
                        if(board[x][y]==BLANK) {
                             board[x][y]=MINE;
                             done=true;
                             //System.out.println("Mine x="+x+" y="+y);
              for(int y=1;y<=gridY[level];y++) {
                   System.out.print("\n");
                   for(int x=1;x<=gridX[level];x++) {
                        number[x][y]=0;
                        if(board[x][y]==MINE) {
                             number[x][y]=9;
                             System.out.print(""+number[x][y]);
                             continue;
                        else {
                             //System.out.println("For board pos x="+x+" y="+y);
                             for(int i=-1;i<=1;i++) {
                                  for(int j=-1;j<=1;j++) {
                                       //System.out.print(""+board[x+i][y+j]);
                                       if(board[x+i][y+j]!=OB && board[x][y]==BLANK) {
                                            number[x][y]+=board[x+i][y+j];
                                  //System.out.print("\n");
                             System.out.print(""+number[x][y]);
              System.out.print("\n");
              screen.setVisible(false);
              display.removeAll();
              pane.removeAll();
              display.setLayout(new GridLayout(gridY[level],gridX[level]));
              for(int y=1;y<=gridY[level];y++) {
                   for(int x=1;x<=gridX[level];x++) {
                        Cover temp=new Cover();
                        //System.out.println("new button="+temp);
                        grid[x][y]=temp;
                        //System.out.println("display="+display.add(temp));
                        //display.add(temp);
                        temp.addMouseListener(this);
              //System.out.println("count="+display.getComponentCount());
              screen.setSize(gridX[level]*20,gridY[level]*20+30);
              pane.add(gameInfo,BorderLayout.NORTH);
              pane.add(display,BorderLayout.CENTER);
              minesLeft=mine[level];
              timeDisp=0;
              tMine.setText(""+minesLeft);
              time.setText(""+timeDisp);
              state=START;
              //System.out.println("gameInfo="+gameInfo);
              //System.out.println("display="+display);
              //screen.pack();
              screen.setVisible(true);
         void revealAround(int x,int y) {
              int index;
              Reveal tempRev=new Reveal(number[x][y]);
              grid[x][y]=tempRev;
              board[x][y]=(board[x][y]|REVEAL);
              index=(x-1)+((y-1)*gridX[level]);
              display.remove(index);
              display.add(tempRev,index);
              if(number[x][y]==0) {
                   for(int i=-1;i<=1;i++) {
                        for(int j=-1;j<=1;j++) {
                             if(!(i==0 && j==0)) {
                                  if((board[x+i][y+j]&REVEAL)!=REVEAL && board[x+i][y+j]!=OB) {
                                       revealAround(x+i,y+j);
         void startTimer() {
              timer.start();
         public void run() {
              while(true) {
                   if(state==PLAYING) {
                        if(timer.getSeconds()>timeDisp) {
                             timeDisp=timer.getSeconds();
                             time.setText(""+timeDisp);
                   else {
                        try {
                             Thread.sleep(1000);
                        catch (InterruptedException e) {
         public void actionPerformed(ActionEvent e) {
              if(e.getActionCommand().equals("Reset")) {
                   setup();
         public void mouseClicked(MouseEvent e) {
              if(state==START) {
                   startTimer();
                   state=PLAYING;
              if(state==PLAYING) {
                   Component tempComp=(Component)e.getSource();
                   boolean found=false;
                   int index=0;
                   int buttonPressed=e.getModifiers();
                   for(int x=1;x<=gridX[level];x++) {
                        if(found) {
                             break;
                        for(int y=1;y<=gridY[level];y++) {
                             if(tempComp==grid[x][y]) {
                                  clickX=x;
                                  clickY=y;
                                  found=true;
                                  break;
                   index=(clickX-1)+((clickY-1)*gridX[level]);
                   if(buttonPressed==InputEvent.BUTTON1_MASK && !(grid[clickX][clickY] instanceof Flag)) {
                        Reveal tempRev=new Reveal(number[clickX][clickY]);
                        grid[clickX][clickY]=tempRev;
                        board[clickX][clickY]=board[clickX][clickY]|REVEAL;
                        display.remove(index);
                        display.add(tempRev,index);
                   else if(buttonPressed==InputEvent.BUTTON3_MASK) {
                        if(display.getComponent(index) instanceof Cover) {
                             Flag tempFlag=new Flag();
                             grid[clickX][clickY]=tempFlag;
                             display.remove(index);
                             display.add(tempFlag,index);
                             tempFlag.addMouseListener(this);
                             minesLeft--;
                        else if(display.getComponent(index) instanceof Flag) {
                             Cover tempCov=new Cover();
                             grid[clickX][clickY]=tempCov;
                             display.remove(index);
                             display.add(tempCov,index);
                             tempCov.addMouseListener(this);
                             minesLeft++;
                        tMine.setText(""+minesLeft);
                   if(number[clickX][clickY]==0) {
                        revealAround(clickX,clickY);
                   screen.setVisible(true);
         public void mousePressed(MouseEvent e) {}
         public void mouseReleased(MouseEvent e) {}
         public void mouseEntered(MouseEvent e) {}
         public void mouseExited(MouseEvent e) {}

    setBounds() is only used for absolute positioning. I
    am using layout managers, so it should no be used.
    Thanks for you reply.Oh I get I did not look at your source code enought... can you post only the part that is bugy!?!?!
    JRG

  • Why is my iphone not showing up on itunes? I just re downloaded itunes and it still does not show up.

    Why is my iphone not showing up on itunes? I just re downloaded itunes and it still won't show up.

    http://support.apple.com/kb/TS1538

  • Wait_cursor still does not show...

    Hi all!
    I'm simply trying to have the wait_cursor showing when event is thrown (for instance when mouse is clicked). I've tried to use the glassPane technique (as often recommended in this forum), but my code doesn't run as expected:
    In the following button_mouseClicked method, I set the glassPane visible and set the cursor to wait_cursor.
    But the wait_cursor only appears after the loops hava been run !?!?
    Can somebody please tell me exactly how those cursors work !?...
    Thanks in advance...
    Mich
    // Here's my test code...
    //===================================================
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class testCursor extends JFrame
    Container cp;
    Component gp;
    JButton button;
    MyMouseListener mml = new MyMouseListener();
    public testCursor()
    cp = getContentPane();
    gp = getGlassPane();
    gp.addMouseListener(mml);
    cp.setLayout(null);
    button = new JButton("click");
    button.setBounds(100,100,150,50);
    button.addMouseListener(mml);
    cp.add(button);
    setSize(600,400);
    class MyMouseListener extends MouseAdapter
    public void mouseClicked(MouseEvent e)
    Object source = e.getSource();
    if (source == button)
    button_mouseClicked(e);
    else if (source == gp)
    gp_mouseClicked(e);
    public void button_mouseClicked(MouseEvent e)
    gp.setVisible(true);
    gp.setCursor(Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR));
    //===============================================================
    //===============================================================
    // THE WAIT_CURSOR APPEARS ONLY AFTER LOOPS HAVE BEEN RUN => ????
    // (AND SOMETIMES ONLY WHEN MOUSE IS MOVED ...)
    //===============================================================
    //===============================================================
    String sss = null;
    for (int i=0; i<1000; i++){
    for (int j=0; j<1000; j++){
    sss = ""+i;
    button.setText(sss);
    public void gp_mouseClicked(MouseEvent e){}
    public static void main(String[] args)
    new testCursor().setVisible(true);
    }

    Hi,
    I see this problem with older vers. (eg. JDK 1.2).
    With JDK 1.3 seems work ok (some times, when the
    work event is small, the cursor is not actualized).
    And you can try call sync() from Toolkit object :
    getDefaultToolkit().sync();
    the java doc say :
         * Synchronizes this toolkit's graphics state. Some window systems
         * may do buffering of graphics events.
         * <p>
         * This method ensures that the display is up-to-date. It is useful
         * for animation.
    Hope this help.

  • I downloaded a book to my Ipad and when I went to sync with Itunes on my PC- it removed the book from my Ipad, but shows it on the PC.  I have it "checked" to be synced but it still does not show up on my Ipad?  This also happened after I downloaded IOS 5

    I downloaded a book on my Ipad and after syncing to my PC, it was dropped from the Ipad, but shows up on my PC?  I have it "checked" to be synced but it will not come back onto my Ipad.  This is also after I downloaded IOS 5.1 for the Ipad.  Does anyone know why it would be dropped from the Ipad?

    Sometimes simply restarting your iTunes, the computer and the iPad is all that it takes to correct an issue like this so try that. Quit iTunes, reboot your computer, and restart the iPad. Then try the sync again.
    Restart the iPad by holding down on the sleep button until the red slider appears and then slide to shut off. To power up hold the sleep button until the Apple logo appears and let go of the button.

  • When I click "unhide" in my hidden purchases list, it still does not show up

    I hid all my TV show purchases to clean up my library by pressing the 'x' on the icon corners. I believe it would say "do you want to hide this from iCloud?" and clicked yes.
    Now, when I go to my iTunes account > Hidden Purchases, my shows are all there. But when I click 'unhide' and then return to iTunes home > Purchased, nothing has shown up and I can't click on anything (Seasons, Episodes, Sort by bar are disabled).
    Does anyone know where to retrieve these purchases? Maybe from iCloud itself?

    Try resetting the printing system:
    Resetting the printing system in Mac OS X v10.4.x
    To use the Reset Printing System function in Mac OS X v10.4.x, follow these steps:
    Choose System Preferences from the Apple menu.
    Choose Print & Fax from the View menu.
    Hold down the Option key while clicking the "+" (Add printer) button.
    As an alternative, you can choose Reset Printing System… from the Printer Setup Utility menu while in Printer Setup Utility (which open when the  "+" button is clicked).
    Download the driver here:
    HP LaserJet Mac OS X Installer Print Only Software Solution for v10.2, v10.3.x, v10.4.x, v10.5

  • Code Completion does not show the Class I want

    Hello!
    I try to get familiar with JDeveloper 10.1.3.
    I have a simple project with an external Jar file.
    In this project I am using the swing file-chooser dialog. So I want to use a FileFilter to let the user choose only one type of file.
    At least there are three FileFilter:
    1. java.io
    2. javax.swing.filechooser (<- this is the one I want)
    3. com.ibm.as400.vaccess.FileFilter
    When i type FileFi the code insight is positioned on Float.
    The little window mentions alt-enter to get the 3rd choice (ibm FileFilter)
    So, do we have a bug, or is it just a config problem or do i want to much?
    With kind regards
    Joerg Fechner

    Hi,
    The javax.swing.filechooser.FileFilter class is an abstract class. Though JDeveloper imports the class for you, it cannot be instantiated. E.g.
    jfc.setFileFilter(new FileFilter());
    doesn't work because you cannot instantiate an abstract class. JDeveloper will show this file as underlined in red to indicate this.
    When importcing classes through pressing alt+Enter, a dilaog shows up that you select the wanted import through the arrow - down or - up key. Press Enter to confirm the selected choice
    Frank

  • HT202213 I have suddenly been unable to connect my computer to my apple tv.  I have turned on my home sharing in itunes but it still does not show an icon in the sidebar.  I have reset my apple tv and redone all the passwords and email info and still does

    I have had my apple tv for 2 years and until I updated it I had no problems.  Now it keeps telling me to turn on my home sharing in iTunes which I have done innumerablre times. It won't recognise my macbook pro so I reset my apple tv to original settings and still it won't work.  Any ideas??????

    Me too I have the same problem as MicheleP57!!!! What can I do???

  • TS1538 i've followed all the step in the article and the iphone still does not show in itunes. Running windows 7 on new computer.  iphone is version 4.

    can't see iphone in itunes.  installed itunes again.  reset phone.  shut off and restarted services.  running out of ideas.

    Follow ALL of the troubleshooting steps in the article from which the question was posted.

  • File's Owner does not show methods in Interface Builder 3.2.6 but the class is set correctly and the nib on the lower left is green

    Hi, I'm trying to make my first IPhone app. After having problems with interface builder the first time I coppied the code directly from a tutorial in case I made any mistakes. I saved the program, and re-opened the .xib file. Right clicking  File's Owner does not show a list of methods. I've been looking around for solutions for this but have not gotten anything to work. I tried deleting the default .xib and creating a new one through file-> new file. This did not help. I did notice that File's owner was showing up as a light blue cube apposed to a yellow one now and found that a bit odd but otherwise nothing changed. I opened the library menu and selected helloWorldiPhoneViewController so it would show up in the view port. I set the class field of File's Owner to hellowWorldiPhoneViewController. File's Owner still does not show methods when right clicked or when a line is dragged over a button. I read somewhere that the color of nib on the lower left of the viewport may indicate a problem, but it is green not indicating any issue. Every solution I found for someone else seems nto to work for me and I don't know how to continue.
    here is the .h file just in case:
    //  HelloWorldViewController.h
    //  HelloWorld
    //  Created by Paul Peelen on 2011-03-14.
    //  Copyright 2011 9697271014. All rights reserved.
    #import <UIKit/UIKit.h>
    @interface HelloWorldViewController : UIViewController {
            UILabel *textLabel;
    @property (nonatomic, retain) IBOutlet UILabel *textLabel;
    - (IBAction)changeTheTextOfTheLabel;
    @end
    I'm trying to connect changeTheTextOfTheLabel to a button and textLabel to a label

    You need a parameter for an interface builder method. The type should be id and the name is typically "sender". It would look like this:
    - (IBAction)changeTheTextOfTheLabel: (id) sender;
    Be careful about those tutorials. Many are ancient and do not correspond to current Xcode behaviour.

  • My ext HD Icon from a portioned drive does not show up on Desktop

    I have an external hard drive with two partitions that both showed up on the the desktop. For some reason, one of the partitions stopped showing up on the desktop but does show up when viewed from finder, disk utility, etc.
    I ran permissions, relaunched, etc. One of the partitions still does not show up- very frustrating. I looked at info, preferences, etc. and can't figure it out.
    I plugged the hard drive into another computer and both show up there...
    So any help will be greatly appreciated.
    Skip

    Hello markshepherd1,
    Thanks for using Apple Support Communities.
    According to the following article, when you're going through the process of burning a playlist to a disc, you have the option to select "Include CD Text".
    If you’re creating an audio CD, choose your options:
    Change the recording speed:
    Choose an option from the Preferred Speed pop-up menu.
    When you burn an audio CD, iTunes automatically uses the best recording speed for the CD. However, if your blank CD is rated for a slower speed than the maximum speed of your drive, or if you experience problems creating CDs, you may want to change the recording speed to match the CD’s rating.
    Change the amount of silence between songs:
    Choose an option from the Gap Between Songs pop-up menu.
    Have all the songs on the disc play at the same volume:
    Select Use Sound Check.
    Include information that disc players in some vehicles can display:
    Select Include CD Text.
    iTunes 11 for Mac: Create your own CDs and DVDs
    http://support.apple.com/kb/PH12148
    Take care,
    Alex H.

  • My Macbook Pro does not show up on my TV.

    How do I make my Macbook Pro show up on my 40 inch Samsung HD TV if I have tried everything in the Help menu in Displays in System Settings?
    I restarted, tried every resolution, gathered windows, detected displays, and everything but my Mac still does not show up on my TV.
    I have also tried to change the settings for my TV but still it says that there is no signal.
    I used a Belkin mini adapter to HDMI and I also used the Dynex version. It used to work fine once but it does not work anymore.

    Hi Jacob,
    jacob tolstrup wrote:
    It used to work fine once but it does not work anymore.
    If the same MBP using the same connections to the same TV with the same settings on both the MBP and TV used to work, it appears there is a hardware problem. You might want to try a different TV or different MBP or different connectors.

Maybe you are looking for

  • MS Access 2000 and 2002

    i need to use java to access a MS Access database, locally and remotely. is the bridge better with 97, 2000, or 2002? or will i need to use something other than the bridge? also can i use PC Anywhere to access this database remotely? TIA.

  • Error while applying patch no 9239089

    Hello, We are applying patch no 9239089 to EBS version 12.1.1 on WIndows 2003 R2 environment. While applying the patch on the application user we are getting the following error (adrelink.log) Starting link of product 'ad' on Wed May 22 16:23:16 IST

  • Transfering Music and Photos to New MacBook

    Hi.I have a 3 year old MacBook Pro and have just recently purchased a brand new MacBook. I was wondering what the best way to transfer all my music and photos to my new mac would be. I have a big external hard drive so would it be worth just copy the

  • Serial number alternatively getting picked in incoming excise invoice-J1IEX

    Hi All, Serial number alternatively getting picked in incoming excise invoice-J1IEX part2 posting. This problem we are facing only from today. Can there be any problem in programme? Pls suggest. Regards, Pavan

  • Cisco Prime Infra 2.1 fails to import an image from file

    We have a standard Cisco Prime Infrastructure 2.1 install. The software repository has been built up by importing the IOS images from the discovered network devices. To implement netflow capabilities on some 3750X switches we need to upgrade the IOS