How to solve this? java.lang.IllegalArgumentException problem

The midlet compliled successfully..
Once run,
I enter 3 different records...
then after when I 'VIEW' for example I enter recordID: 1..
by right, all the details about recordId : 1 would be listed out...somehow, this error pops up.
java.lang.IllegalArgumentException
* To change this template, choose Tools | Templates
* and open the template in the editor.
import javax.microedition.midlet.*;
import javax.microedition.lcdui.*;
import javax.microedition.rms.*;
* @author RyanLCC
public class cdSeller extends MIDlet implements CommandListener{
private Display display;
private Form form;
private Command add, view, update, delete, exit;
private TextField rcdId, title, quantity, price, profit, director, publish, actors;
private RecordStore rs;
private Alert alert = new Alert("New Data Added !!!");
private Alert alert1 = new Alert("Database Upated!!!");
private Alert alert2 = new Alert("Record Deleted!!!");
private Alert alert3 = new Alert("Looking Data!!!");
public cdSeller()throws RecordStoreException{
display = Display.getDisplay(this);
exit = new Command("Exit", Command.EXIT, 1);
add = new Command("Add",Command.SCREEN,2);
update = new Command("Update",Command.SCREEN,2);
delete = new Command("Delete",Command.SCREEN,2);
view = new Command("View",Command.SCREEN,2);
rcdId= new TextField("Record ID :","",5,TextField.NUMERIC);
title= new TextField("Title :","",11,TextField.ANY);
quantity= new TextField("Quantity :","",8,TextField.NUMERIC);
price= new TextField("Retail price :","",8,TextField.ANY);
profit= new TextField("Profit margin:","",8,TextField.ANY);
director= new TextField("Director :","",11,TextField.ANY);
publish= new TextField("Publisher :","",11,TextField.ANY);
actors= new TextField("Actors :","",11,TextField.ANY);
rs = RecordStore.openRecordStore("My CD Datbase Directory", true);
form = new Form("My CD Database");
form.append(rcdId);
form.append(title);
form.append(quantity);
form.append(price);
form.append(profit);
form.append(director);
form.append(publish);
form.append(actors);
form.addCommand(exit);
form.addCommand(add);
form.addCommand(update);
form.addCommand(delete);
form.addCommand(view);
form.setCommandListener(this);
public void startApp() {
display.setCurrent(form);
public void pauseApp() {
public void destroyApp(boolean unconditional) {
try {
rs.closeRecordStore();
} catch (RecordStoreException ex) {
ex.printStackTrace();
public void commandAction(Command c, Displayable d) {
alert.setTimeout(3000);
alert1.setTimeout(3000);
String str;
byte bytes[];
int recordID;
try{
if(c==add){
str = title.getString()+":"+quantity.getString()+
":"+price.getString()+":" +profit.getString()+
":"+director.getString()+":"+publish.getString ()+
":"+actors.getString();
bytes=str.getBytes();
recordID = rs.addRecord(bytes, 0, bytes.length);
System.out.println("Record of ID:"+recordID+" is added");
Display.getDisplay(this).setCurrent(alert);
}else if(c==update){
recordID = Integer.parseInt(rcdId.getString());
str = title.getString()+":"+quantity.getString()+
":"+price.getString()+":" +profit.getString()+
":"+director.getString()+":"+publish.getString ()+
":"+actors.getString();
bytes=str.getBytes();
rs.setRecord(recordID, bytes, 0, bytes.length);
Display.getDisplay(this).setCurrent(alert1);
}else if(c == delete){
recordID = Integer.parseInt(rcdId.getString());
rs.deleteRecord(recordID);
Display.getDisplay(this).setCurrent(alert2);
}else if(c == view ){
recordID = Integer.parseInt(rcdId.getString());
bytes = new byte[rs.getRecordSize(recordID)];
rs.getRecord(recordID,bytes,0);
String str1 = new String(bytes);
int index = str1.indexOf(":");
title.setString(str1.substring(0));
quantity.setString(str1.substring(1));
price.setString(str1.substring(2));
profit.setString(str1.substring(3));
director.setString(str1.substring(4));
publish.setString(str1.substring(5));
actors.setString(str1.substring(6));
}else if( c == exit){
destroyApp(true);
notifyDestroyed();
}catch(Exception e){
e.printStackTrace();
}

*To change this template, choose Tools | Templates*
and open the template in the editor.
*import javax.microedition.midlet.*;
import javax.microedition.lcdui.*;*
*import javax.microedition.rms.*;
*@author RyanLCC*
public class CdSeller extends MIDlet implements CommandListener{
    private Display display;
    private Form form;
    private Command add, view, update, delete, exit;
    private TextField rcdId, title, quantity, price, profit, director, publish, actors;
    private RecordStore rs;
    private Alert alert = new Alert("New Data Added !!!");
    private Alert alert1 = new Alert("Database Upated!!!");
    private Alert alert2 = new Alert("Record Deleted!!!");
    private Alert alert3 = new Alert("Looking Data!!!");
    public CdSeller()throws RecordStoreException{
    display = Display.getDisplay(this);
    exit = new Command("Exit", Command.EXIT, 1);
    add = new Command("Add",Command.SCREEN,2);
    update = new Command("Update",Command.SCREEN,2);
    delete = new Command("Delete",Command.SCREEN,2);
    view = new Command("View",Command.SCREEN,2);
    rcdId= new TextField("Record ID     :","",5,TextField.NUMERIC);
    title= new TextField("Title         :","",11,TextField.ANY);
    quantity= new TextField("Quantity   :","",8,TextField.ANY);
    price= new TextField("Retail price  :","",8,TextField.ANY);
    profit= new TextField("Profit margin:","",8,TextField.ANY);
    director= new TextField("Director   :","",11,TextField.ANY);
    publish= new TextField("Publisher   :","",11,TextField.ANY);
    actors= new TextField("Actors       :","",11,TextField.ANY);
    rs = RecordStore.openRecordStore("My CD Datbase Directory", true);
    form = new Form("My CD Database");
    form.append(rcdId);
    form.append(title);
    form.append(quantity);
    form.append(price);
    form.append(profit);
    form.append(director);
    form.append(publish);
    form.append(actors);
    form.addCommand(exit);
    form.addCommand(add);
    form.addCommand(update);
    form.addCommand(delete);
    form.addCommand(view);
    form.setCommandListener(this);
    public void startApp() {
        display.setCurrent(form);
    public void pauseApp() {
    public void destroyApp(boolean unconditional) {
        try {
            rs.closeRecordStore();
        } catch (RecordStoreException ex) {
            ex.printStackTrace();
    public void commandAction(Command c, Displayable d) {
        alert.setTimeout(3000);
        alert1.setTimeout(3000);
        String str;
        byte bytes[];
        int recordID;
        try{
            if(c==add){
                str = title.getString()+":"+quantity.getString()+
                      ":"+price.getString()+":" +profit.getString()+
                      ":"+director.getString()+":"+publish.getString()+
                      ":"+actors.getString();+
+                bytes=str.getBytes();+
+                recordID = rs.addRecord(bytes, 0, bytes.length);+
+                System.out.println("Record of ID:"+recordID+" is added");
                Display.getDisplay(this).setCurrent(alert);
            }else if(c==update){
                recordID = Integer.parseInt(rcdId.getString());
                str = title.getString()+":"+quantity.getString()+
                      ":"+price.getString()+":" +profit.getString()+
                      ":"+director.getString()+":"+publish.getString()+
                      ":"+actors.getString();+
+                bytes=str.getBytes();+
+                rs.setRecord(recordID, bytes, 0, bytes.length);+
+                System.out.println("Record of ID:"+recordID+" is updated");
                Display.getDisplay(this).setCurrent(alert1);
            }else if(c == delete){
                recordID = Integer.parseInt(rcdId.getString());
                rs.deleteRecord(recordID);
                System.out.println("Record of ID:"+recordID+" is deleted");
                Display.getDisplay(this).setCurrent(alert2);
            }else if(c == view ){
                recordID = Integer.parseInt(rcdId.getString());
                bytes = new byte[rs.getRecordSize(recordID)];
                rs.getRecord(recordID,bytes,0);
                String str1 = new String(bytes);
                int index = str1.indexOf(":");
                title.setString(str1.substring(0));
                quantity.setString(str1.substring(1));
                price.setString(str1.substring(2));
                profit.setString(str1.substring(3));
                director.setString(str1.substring(4));
                publish.setString(str1.substring(5));
                actors.setString(str1.substring(6));
        }else if( c == exit){
            destroyApp(true);
            notifyDestroyed();
    }catch(Exception e){
        e.printStackTrace();
Starting emulator in execution mode
Installing suite from: http://127.0.0.1:59543/RecordStore.jad
Record of ID:1 is added
Record of ID:2 is added
java.lang.IllegalArgumentException
at javax.microedition.lcdui.TextField.setCharsImpl(), bci=79
at javax.microedition.lcdui.TextField.setString(), bci=37
at CdSeller.commandAction(CdSeller.java:120)
at javax.microedition.lcdui.Display$ChameleonTunnel.callScreenListener(), bci=46
at com.sun.midp.chameleon.layers.SoftButtonLayer.processCommand(), bci=74
at com.sun.midp.chameleon.layers.SoftButtonLayer.commandSelected(), bci=11
at com.sun.midp.chameleon.layers.MenuLayer.pointerInput(), bci=170
at com.sun.midp.chameleon.CWindow.pointerInput(), bci=76
at javax.microedition.lcdui.Display$DisplayEventConsumerImpl.handlePointerEvent(), bci=19
at com.sun.midp.lcdui.DisplayEventListener.process(), bci=296
at com.sun.midp.events.EventQueue.run(), bci=179
at java.lang.Thread.run(Thread.java:619)
javacall_lifecycle_state_changed() lifecycle: event is JAVACALL_LIFECYCLE_MIDLET_SHUTDOWNstatus is JAVACALL_OK
I had tired to change the quantity= new TextField("Quantity   :","",8,TextField.ANY);+ but still giving me the same problem...
Here again..Thankx alot..

Similar Messages

  • Java.lang.IllegalArgumentException (problem when playing audio)

    i play an audio with code like this:
    private AudioFormat getAudioFormat(){
        float sampleRate = 16000;
        //8000,11025,16000,22050,44100
        int sampleSizeInBits = 16;
        //8,16
        int Channels =2;
        //1,2
        boolean Signed =true;
        //true,false
        boolean bigEndian = false;
        //true,false
        return new AudioFormat(sampleRate,
                               sampleSizeInBits,
                               Channels,
                               Signed,
                               bigEndian);
      }//end getAudioFormat
    private void playAudio() {
        try{
          audioFormat = getAudioFormat();
          //System.out.println(audioFormat);
          //tformat.setText(audioFormat.toString());
          DataLine.Info dataLineInfo =
                              new DataLine.Info(
                                SourceDataLine.class,
                                        audioFormat);
          sourceDataLine =
                 (SourceDataLine)AudioSystem.getLine(
                                       dataLineInfo);
        }catch (Exception e) {
           JOptionPane.showMessageDialog(null, e.getMessage(),"Message",JOptionPane.ERROR_MESSAGE);
        }//end catch
      }//end playAudio
      //begin playing
    playAudio();
    int cnt=1; 
    byte dt[]=new byte[1000];     
        try{
                sourceDataLine.open(audioFormat,sourceDataLine.getBufferSize());
                  sourceDataLine.start();
         }catch(LineUnavailableException e){
                 e.printStackTrace();
          do { // process messages sent from client    
             try {     
                cnt=sourceDataLine.read(dt,0,dt.length);
                if(cnt > 0){
              sourceDataLine.write(
                                 temp1, 0, cnt);
             catch(IllegalArgumentException ex){
                ex.printStackTrace();
          } while ( cnt!=-1 );when i playing a few minutes i got bug like this
    java.lang.IllegalArgumentException: illegal request to write non-integral number of frames (450 bytes, frameSize = 4 bytes). please tell me what wrong?
    Edited by: Christian_info on Jun 13, 2008 1:25 AM

    i play an audio with code like this:
    private AudioFormat getAudioFormat(){
        float sampleRate = 16000;
        //8000,11025,16000,22050,44100
        int sampleSizeInBits = 16;
        //8,16
        int Channels =2;
        //1,2
        boolean Signed =true;
        //true,false
        boolean bigEndian = false;
        //true,false
        return new AudioFormat(sampleRate,
                               sampleSizeInBits,
                               Channels,
                               Signed,
                               bigEndian);
      }//end getAudioFormat
    private void playAudio() {
        try{
          audioFormat = getAudioFormat();
          //System.out.println(audioFormat);
          //tformat.setText(audioFormat.toString());
          DataLine.Info dataLineInfo =
                              new DataLine.Info(
                                SourceDataLine.class,
                                        audioFormat);
          sourceDataLine =
                 (SourceDataLine)AudioSystem.getLine(
                                       dataLineInfo);
        }catch (Exception e) {
           JOptionPane.showMessageDialog(null, e.getMessage(),"Message",JOptionPane.ERROR_MESSAGE);
        }//end catch
      }//end playAudio
      //begin playing
    playAudio();
    int cnt=1; 
    byte dt[]=new byte[1000];     
        try{
                sourceDataLine.open(audioFormat,sourceDataLine.getBufferSize());
                  sourceDataLine.start();
         }catch(LineUnavailableException e){
                 e.printStackTrace();
          do { // process messages sent from client    
             try {     
                cnt=sourceDataLine.read(dt,0,dt.length);
                if(cnt > 0){
              sourceDataLine.write(
                                 temp1, 0, cnt);
             catch(IllegalArgumentException ex){
                ex.printStackTrace();
          } while ( cnt!=-1 );when i playing a few minutes i got bug like this
    java.lang.IllegalArgumentException: illegal request to write non-integral number of frames (450 bytes, frameSize = 4 bytes). please tell me what wrong?
    Edited by: Christian_info on Jun 13, 2008 1:25 AM

  • Under options/tabs: open new windows in a new tab instead does not work. many sites open their popups or new windows NOT in a tab as it should. How to solve this, has been a problem in the last versions incl. the latest.

    i would like the option ´open new window in new tab instead´ working properly so no new windows will be opened except when I command them to..
    as said, many websites have popups (most are blocked, still some come through) who open in a new window.

    Type '''about:config''' in the Location (address) bar and press the "Enter" key. When you see a warning, click '''I'll be careful, I promise!''' button.
    * Preferences that have been modified are shown as '''bold (user set)'''.
    * Preferences can be '''Reset to the default''' or changed via the right-click context menu.
    -> In the '''Filter bar''' type '''browser.link.open_newwindow'''
    * Right click the preference '''browser.link.open_newwindow''' and click '''Modify'''
    * change the value to '''3'''
    * click OK
    -> In the '''Filter bar''' type '''browser.link.open_newwindow.restriction'''
    * Right click the preference '''browser.link.open_newwindow.restriction''' and click '''Modify'''
    * change the value to '''0''' (zero)
    * click OK
    -> Close the '''about:config''' tab and then Restart Firefox.
    Check and tell if its working.

  • How to solve this error java.util.MissingResourceException

    Hi Friends,
    I had developed one web dynpro application by using  Internationalization - I18N of WebDynPro (Java)  Application (Blog)   but I got one error that is
    <b>java.util.MissingResourceException: Can't find bundle for base name com.sap.example.language.lang, locale en_US</b> 
    Actually i created two properties file
    1. lang_en.properties
    2. lang_ta.properties
    I stored this two properties file in this package com.sap.example.language
    and this my code in DOInit()
    sessionLocale =  WDClientUser.getCurrentUser().getLocale();
    resourceHandler = ResourceBundle.getBundle("com.sap.example.language.lang",sessionLocale);
         catch (WDUMException e)
         e.printStackTrace();
         wdContext.currentContextElement().setUsername_label(resourceHandler.getString("testview.username"));
         wdContext.currentContextElement().setPassword_label(resourceHandler.getString("testview.password"));
    How to solve this error?
    Guide me.
    Advance Thanks,
    Balaji

    Hi Friends,
    I had developed one web dynpro application by using Internationalization - I18N of WebDynPro -Java Application (Blog) but I got one error that is
    <b>java.util.MissingResourceException: Can't find bundle for base name com.sap.example.language.lang, locale en_US</b>
    Actually i created two properties file
    1. lang_en.properties
    2. lang_ta.properties
    I stored this two properties file in this package com.sap.example.language
    and this my code in DOInit()
    sessionLocale = WDClientUser.getCurrentUser().getLocale();
    resourceHandler = ResourceBundle.getBundle("com.sap.example.language.lang",sessionLocale);
    catch (WDUMException e)
    e.printStackTrace();
    wdContext.currentContextElement().setUsername_label(resourceHandler.getString("testview.username"));
    wdContext.currentContextElement().setPassword_label(resourceHandler.getString("testview.password"));
    How to solve this error?
    Guide me.
    Advance Thanks,
    Balaji

  • How to solve this problem javax.mail.AuthenticationFailedException

    i was used in this progrm my labtop means working correctly but instead of labtop i am using the desktop means following error is occuered can any one tell to me how to solve this problem.The erroe is **javax.mail.AuthenticationFailedException**
    The coding is as followes
    import javax.mail.*;
    import javax.mail.internet.*;
    import java.util.*;
    public class Main
    String d_email = "[email protected]",
    d_password = "inst9",
    d_host = "smtp.gmail.com",
    d_port = "465",
    m_to = "[email protected]",
    m_subject = "Testing",
    m_text = "Hey, this is the testing email.";
    public Main()
    Properties props = new Properties();
    props.put("mail.smtp.user", d_email);
    props.put("mail.smtp.host", d_host);
    props.put("mail.smtp.port", d_port);
    props.put("mail.smtp.starttls.enable","true");
    props.put("mail.smtp.auth", "true");
    //props.put("mail.smtp.debug", "true");
    props.put("mail.smtp.socketFactory.port", d_port);
    props.put("mail.smtp.socketFactory.class", "javax.net.ssl.SSLSocketFactory");
    props.put("mail.smtp.socketFactory.fallback", "false");
    SecurityManager security = System.getSecurityManager();
    try
    Authenticator auth = new SMTPAuthenticator();
    Session session = Session.getInstance(props, auth);
    //session.setDebug(true);
    MimeMessage msg = new MimeMessage(session);
    msg.setText(m_text);
    msg.setSubject(m_subject);
    msg.setFrom(new InternetAddress(d_email));
    msg.addRecipient(Message.RecipientType.TO, new InternetAddress(m_to));
    Transport.send(msg);
    catch (Exception mex)
    mex.printStackTrace();
    public static void main(String[] args)
    Main blah = new Main();
    private class SMTPAuthenticator extends javax.mail.Authenticator
    public PasswordAuthentication getPasswordAuthentication()
    return new PasswordAuthentication(d_email, d_password);
    }

    yes that not a my password ...but the following erroer is occured ...
    run-main:
    javax.mail.AuthenticationFailedException
    at javax.mail.Service.connect(Service.java:319)
    at javax.mail.Service.connect(Service.java:169)
    at javax.mail.Service.connect(Service.java:118)
    at javax.mail.Transport.send0(Transport.java:188)
    at javax.mail.Transport.send(Transport.java:118)
    at Main.<init>(Main.java:41)
    at Main.main(Main.java:51)
    BUILD SUCCESSFUL (total time: 3 seconds)
    I am using the netbeand 5.5

  • How to solve this belowed problem in Windows pc?

    I have installed windows 7 32 bit os,And then i installed java 7.I have set the path variable as bin and i have set the JAVA_HOME variable properly. After that i try to run in command as >java  it did show any thing and then i tried > java -v or trying to run a program it shows an same error like "There was problem starting java.The specified module could not found". Check out sample problem screenshot http://velshare.blogspot.in/2013/06/how-to-solve-this-issue.html. How can i solve this problem ?

    I use paintImmediately() method. Here is a thread that shows how it works:
    http://forum.java.sun.com/thread.jsp?forum=57&thread=234114

  • How to avaoid java.lang.IllegalArgumentException: No enum const class

    HI ,
    Iam getting java.lang.IllegalArgumentException when iam using switch case through Enum contants.
    //Enum Constants declaration
    public enum USEOFPROCEEDSVALUES { U1,U2,U3, U4}
    //Using Enum in Java class
    Test.java
    USEOFPROCEEDSVALUES useOfProceedsVar =USEOFPROCEEDSVALUES.valueOf(useOfproceeds);
    switch (useOfProceedsVar) {   
                   case U1:
                   revenueSourceCode="REVENUE_SOURCE_CODE.POWER";
                        break;
                   case U2:
                        revenueSourceCode="REVENUE _SOURCE_CODE.WATER";
                   break;
                   case U3:
                        revenueSourceCode="REVENUE_SOURCE_CODE.POWER";
                        break;
                   case U4:
                             revenueSourceCode=REVENUE_SOURCE_CODE.POWER";
                        break;
    default:
                        revenueSourceCode=null;
    Exception raising if there is either of these not U1,U2,U3,U4 ara not avalabele. i.e is if useOfProceedsVar is A6 then exception raising
    How to avoid this exception
    Thanks for early reply

    user818909 wrote:
    HI ,
    Iam getting java.lang.IllegalArgumentException when iam using switch case through Enum contants.
    //Enum Constants declaration
    public enum USEOFPROCEEDSVALUES { U1,U2,U3, U4}
    //Using Enum in Java class
    Exception raising if there is either of these not U1,U2,U3,U4 ara not avalabele. i.e is if useOfProceedsVar is A6 then exception raisingActually useOfProceedsVar can never be A6, it can only take a value from the enum.
    The exception will be raised by valueOf, which (quite correctly) throws it if the String you pass to it doesn't match any of the enum constants.
    >
    How to avoid this exception
    Don't avoid it, process it. What do you want your code to do if the string doesn't match any of your enum constants? Whatever it is, stick it in a catch clause.

  • When i use oracle vwp give this error (java.lang.IllegalArgumentException:

    sir i use oracle with vwp
    sir see my code this code goto catch (Exception e) section and give this code in textfield
    " java.lang.IllegalArgumentException: luser.username "
    when i use mysql that give right result but when use oracel that give me this error
    try {
    RowKey userRowKey = luserDataProvider.findFirst
    (new String[] { "luser.username" },
    new Object[] { textField4.getText()});
    if (userRowKey == null) {
    textField3.setText("11111");
    return null;
    } else {
    textField3.setText("22222");
    return null;
    catch (Exception e) {
    log("Cannot perform login for userid " + textField3.getText(), e);
    error("Cannot perform login for userid " + textField3.getText() + ": " + e);
    textField3.setText(e);
    return null;
    please give me idea how i get right result
    thank you

    please check Article-ID "Positions Hierarchy Edittor Shows Error Your Userarea Applet Has Caused A Runtime Exception [ID 1151488.1]" in MOS...
    HTH

  • I recieve SMS and i hear established melody and I do't hear the person on all over SMS. How to solve this problem?

    Problem with an incoming message. For example, during my conversation the second line receives a call, I hear the sound in dynamics such as "piiiip piiiip," but when in this situation I recieve SMS and i hear established melody and I do't hear the person on all over SMS. How to solve this problem? Perhaps someone tell me? save in advance

    Not Charge
    - See:     
    iPod touch: Hardware troubleshooting
    iPhone and iPod touch: Charging the battery
    - Try another cable. The cable for 5G iPod (lightning connector) seems to be more prone to failure than the older cable.
    - Try another charging source
    - Inspect the dock connector on the iPod for bent or missing contacts, foreign material, corroded contacts, broken, missing or cracked plastic.
    - Make an appointment at the Genius Bar of an Apple store.
      Apple Retail Store - Genius Bar

  • Hi, when ever I'm using 3G, on my Iphone4 sim stops working and Network is lost, this started after I updated my phone with  6.0.1(10A523)version. Please help how to solve this problem.

    Hi, when ever I'm using 3G, on my Iphone4 sim stops working and network is lost, this started after I updated my phone with  6.0.1(10A523)version. Please help how to solve this problem. Thanks.

    Photos/videos in the Camera Roll are not synced. Photos/videos in the Camera Roll are not touched with the iTunes sync process. Photos/videos in the Camera Roll can be imported by your computer which is not handled by iTunes. Most importing software includes an option to delete the photos/videos from the Camera Roll after the import process is complete. If is my understanding that some Windows import software supports importing photos from the Camera Roll, but not videos. Regardless, the import software should not delete the photos/videos from the Camera Roll unless you set the app to do so.
    Photos/videos in the Camera Roll are included with your iPhone's backup. If you synced your iPhone with iTunes before the videos on the Camera Roll went missing and you haven't synced your iPhone with iTunes since they went missing, you can try restoring the iPhone with iTunes from the iPhone's backup. Don't sync the iPhone with iTunes again and decline the prompt to update the iPhone's backup after selecting Restore.

  • I Try to open an Indesign document. The message: it is made in a newer version. Go tot CC: Help/Give your Adobe id/Start Indesign again and try to open the document. This doesn't work. How to solve this problem?

    I Try to open an Indesign document. The message: it is made in a newer version. Go tot CC: Help/Give your Adobe id/Start Indesign again and try to open the document. This doesn’t work. How to solve this problem?

    What version are you running?
    What version was it made with?

  • Hello guys..!! I have got my new  iphone 4 2 days ago.The same day it got a problem of auto restart in every 1, to 2 minutes. I updated and restored it many times...but of no use... can any one help me how to solve this problem..!!

    Hello guys..!! I have got my new  iphone 4 2 days ago.The same day it got a problem of auto restart in every 1, to 2 minutes. I updated and restored it many times...but of no use... can any one help me how to solve this problem..!!

    Go to Settings/General/Reset - Erase all content and settings. the connecto to iTunes and restore as a New phone. Do not restore any backup. If the problem persists you have a hardware problem. Take it to Apple for exchange.
    This assumes that the phone is not hacked or jailbroken. If it is you will have to go elsewhere on the internet for help.

  • Iphone 4 is hiting in ios 5.1.1. any one know how to solve this problem??

    iphone 4 is hiting in ios 5.1.1. any one know how to solve this problem??

    This sounds like a hardware problem and should be taken to Apple if the heating / "hiting" becomes disturbing to you. If you feel that your iPhone has a heating / "hiting" problem and needs to be repaired, please contact Apple Support and they can further assist you in having it inspected, repaired, or even replaced. In the past, the overheating of Apple products has been known to cause harmful problems to a few particular users. Please evaluate your situation and take further action if you feel necessary.
    http://www.apple.com/support/contact/

  • I'm using windows 8 on my pc, and i have just downloaded the latest version of itunes, after i upgraded the latest version of itunes, it can't detect my iphone, but my windows/my pc does. Anyone knows how to solve this problem?

    I'm using windows 8 on my pc, and i have just downloaded the latest version of itunes, after i upgraded the latest version of itunes, it can't detect my iphone, but my windows/my pc does. Anyone knows how to solve this problem?

    Hi jstutsman,
    If you are having issues with your iPod nano not being recognized in iTunes after a recent update, you may find the steps and links listed in the following article helpful:
    iPod not appearing in iTunes - Apple Support
    Regards,
    - Brenden

  • My external hard drive will no longer connect to my macpro......any ideas on how to solve this problem??

    My external hard drive will no longer connect to my macbook pro via FW800........Any ideas on how to solve this??

    Reset the SMC, see this Apple note: http://support.apple.com/kb/HT3964
    Also reset the PRAM:
    Shut down the computer.
    Locate the following keys on the keyboard: Command, Option, P, and R. You will need to hold these keys down simultaneously in step 4.
    Turn on the computer.
    Press and hold the Command-Option-P-R keys. You must press this key combination before the gray screen appears.
    Hold the keys down until the computer restarts and you hear the startup sound for the second time.
    Release the keys.
    In most cases, those two actions will fix the port issue. If it's still an issue, you may need to see if the external hard drive can connect to another system, to ensure it's not having problems.

Maybe you are looking for

  • SQL Bug in "Minus" in correlated subquery presence of index (11.2.0.1.0)

    SQL Bug in "Minus" in correlated subquery presence of index (Oracle Database 11g Release 11.2.0.1.0) Below, there is a small example that shows the bug. Further below, there are some more comments. drop table Country; create table Country (code VARCH

  • Mapping MDS Characteristics to KM Properties through DMS Connector

    Does anyone who who to map individual characteristics attached to a document in DMS to properties in KM using the DMS Connector for KM? Installing the DMS Connector for KM creates a set of DMS-specific KM propeties.  There is a property named dmsrm_c

  • Need Help Urgently ...regarding Dynamic Tree

    Hi Friends , I want to display Dynamic Tree . Please see T code pposa . You can see Organization tree on click of Org str . I want replicate same over WebDynpro . I feel I have to use Dynamic programming for the same ? Am I correct ? Is there any oth

  • Embedded SWF flashes white before it loads.

    I have an SWF embedded in a table. When it loads in the browser the SWF briefly flashes white before the preloader begins to load. I have set the color properties in both the SWF file and in the table cell. Is there a way to change the color from whi

  • Mustek Scanner - TWAIN - Image Capture

    I have a new +Mustek ScanExpress A3 USB 1200dpi Pro+ Scanner. I used to be able to use the Import menu in Photoshop CS4 to access this scanner via the TWAIN interface. However, +PhotoShop CS4+ includes a ReadMe which says that using TWAIN is not reco