My edit isn't working!!please help.. : )

here's my code in our project. it accesses a database and all of the methods are working except that the "edit" action performed wont work. the problem is that it's not updating my table whenever i tried to save what i edited. can someone help me.. thanks in advance.. (^___,^)
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import java.sql.*;
import javax.swing.table.*;
public class SCubeApp extends JInternalFrame implements ActionListener
     String strSql = "";
     Connection conn = null;
     DefaultTableModel model;
JTable gridApp = new JTable();
String strFilter = "";
String A_ID = "";
String A_FirstName = "";
String A_LastName = "";
String A_Address = "";
     String A_ContactNumber = "";
     String A_Position = "";
     String A_EAdd = "";
     String C_ID = "";
JLabel lblFN = new JLabel("First Name:");
JTextField txtFN = new JTextField(20);
JLabel lblLN = new JLabel("Last Name:");
JTextField txtLN = new JTextField(20);
JLabel lblAdd = new JLabel("Address:");
JTextField txtAdd = new JTextField(30);
JLabel lblCN = new JLabel("Contact Number:");
JTextField txtCN = new JTextField(15);
     JLabel lblPos = new JLabel("Position");
     JTextField txtPos = new JTextField(30);
     JLabel lblEAd = new JLabel("Email Address:");
JTextField txtEAd = new JTextField(30);
JLabel lblCId = new JLabel("Company ID");
JTextField txtCId = new JTextField(10);
Icon insertIcon = new ImageIcon("inserticon1.jpg");
Icon editIcon = new ImageIcon("editicon1.jpg");
Icon searchIcon = new ImageIcon("searchicon1.jpg");
Icon deleteIcon = new ImageIcon("deleticon1.jpg");
Icon closeIcon = new ImageIcon("closeicon.png");
JButton btnInsert = new JButton("Insert", insertIcon);
JButton btnEdit = new JButton("Edit", editIcon);
JButton btnSearch = new JButton(searchIcon);
JButton btnDelete = new JButton(deleteIcon);
JButton btnClose = new JButton(closeIcon);
protected void setBkgrndImge(JDesktopPane mainForm)
          ImageIcon bg = new ImageIcon("backgrnd.jpg");
          JLabel label = new JLabel(bg);
          label.setBounds(0, 0, bg.getIconWidth(), bg.getIconHeight());
          mainForm.add(label, new Integer(Integer.MIN_VALUE) );
public SCubeApp ()
     super("Applicant Page", true, true, true, true);
     Container c = getContentPane();
c.setLayout(new GridLayout(3,1));
boolean blnS = true;
try
     Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
conn = DriverManager.getConnection("jdbc:odbc:SCube","","");
initTableModel();
               refreshGrid();
               setColumnWidths();
JScrollPane scroller = new JScrollPane(gridApp);
               c.add(scroller);
               JPanel pnltxt = new JPanel();
pnltxt.setSize(30,30);
               pnltxt.setBackground(new Color(8, 179, 91));
pnltxt.setLayout(new GridLayout(7, 1));
JScrollPane scroller1 = new JScrollPane(pnltxt);
c.add(scroller1, BorderLayout.CENTER);
pnltxt.add(lblFN);
pnltxt.add(txtFN);
pnltxt.add(lblLN);
pnltxt.add(txtLN);
pnltxt.add(lblAdd);
pnltxt.add(txtAdd);
pnltxt.add(lblCN);
pnltxt.add(txtCN);
pnltxt.add(lblPos);
pnltxt.add(txtPos);
pnltxt.add(lblEAd);
pnltxt.add(txtEAd);
pnltxt.add(lblCId);
pnltxt.add(txtCId);
JPanel pnlbtn = new JPanel();
               pnlbtn.setLayout(new GridLayout(1,5));
               pnlbtn.setSize(5,5);
               c.add(pnlbtn, BorderLayout.SOUTH);
pnlbtn.add(btnInsert);
btnInsert.addActionListener(this);
               btnInsert.setBackground(new Color(180,221,162));
               if (blnS)
     pnlbtn.add(btnEdit);
btnEdit.addActionListener(this);
                    btnEdit.setBackground(new Color(180,221,162));
pnlbtn.add(btnDelete);
btnDelete.addActionListener(this);
                    btnDelete.setBackground(new Color(180,221,162));
}//if
pnlbtn.add(btnSearch);
btnSearch.addActionListener(this);
               btnSearch.setBackground(new Color(180,221,162));
pnlbtn.add(btnClose);
btnClose.addActionListener(this);
               btnClose.setBackground(new Color(180,221,162));     
               setGridEvents();
enabled(false);
     }//try
     catch(SQLException sqlex)
               sqlex.printStackTrace();
          }//catch
          catch(ClassNotFoundException cnfex)
               cnfex.printStackTrace();
          }//catch
          setSize(500,450);
          setDefaultCloseOperation(JInternalFrame.DISPOSE_ON_CLOSE);          
          show();     
}//staff
public void actionPerformed(ActionEvent ae)
     if(ae.getSource() == btnInsert) //insert
          try
               if(btnInsert.getText().equals("Insert"))
                    txtFN.setText("");
                    txtLN.setText("");
                    txtAdd.setText("");
                    txtCN.setText("");
                    txtPos.setText("");
                    txtEAd.setText("");
                    txtCId.setText("");
btnInsert.setText("Save");
btnClose.setText("Revert");
btnEdit.setEnabled(false);
btnSearch.setEnabled(false);
btnDelete.setEnabled(false);
enabled(true);                                    
               }//if
               else
                    if
                         !txtFN.getText().trim().equals("") &&
                         !txtLN.getText().trim().equals("") &&
                         !txtAdd.getText().trim().equals("") &&
                         !txtCN.getText().trim().equals("") &&
                         !txtEAd.getText().trim().equals("") &&
                         !txtPos.getText().trim().equals("") &&
                         !txtCId.getText().trim().equals("")                                                        
                         btnInsert.setText("Insert");
btnClose.setText("Close");
btnEdit.setEnabled(true);
btnSearch.setEnabled(true);
btnDelete.setEnabled(true);
Object[] objRow = new Object[8];
objRow[0] = "";
objRow[1] = txtFN.getText();
objRow[2] = txtLN.getText();
objRow[3] = txtAdd.getText();
objRow[4] = txtCN.getText();
                         objRow[5] = txtPos.getText();
objRow[6] = txtEAd.getText();
objRow[7] = txtCId.getText();
Statement stmt = conn.createStatement();
String strSql = "Insert into Applicant(A_FirstName,A_LastName,A_Address,A_ContactNumber,A_Position,A_EAdd,C_ID) values('" + txtFN.getText().trim() + "','" + txtLN.getText().trim() + "','" + txtAdd.getText().trim() + "','" + txtCN.getText().trim() + "','" + txtPos.getText().trim() + "','" + txtEAd.getText().trim() + "','" + txtCId.getText().trim() + "')";
System.out.println("STRSQL : " + strSql);
int result = stmt.executeUpdate(strSql);
String strTmp = "Select A_ID from [Applicants] order by [A_ID]";
Statement stmtmp = conn.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE,ResultSet.CONCUR_UPDATABLE);
ResultSet rst = stmtmp.executeQuery(strTmp);
boolean j = rst.last();
String strAppId = rst.getString("A_ID");
objRow[0] = A_ID;
if (result > 0)
     model.insertRow(gridApp.getRowCount(),objRow);
gridApp.setModel(model);
gridApp.changeSelection(gridApp.getRowCount()-1,0,false,false);
fillFields();
}//if (result >0)
stmt.close();
enabled(false);
else
     JOptionPane.showMessageDialog(this, "Please check for blank fields.","Info",JOptionPane.INFORMATION_MESSAGE);
}//else
          }//try
          catch(SQLException sqlex)
sqlex.printStackTrace();
}//catch
     }//if ae.getsors
     if(ae.getSource() == btnEdit)
          try
if (btnEdit.getText().equals("Edit"))
btnEdit.setText("Save");
btnClose.setText("Revert");
btnInsert.setEnabled(false);
btnSearch.setEnabled(false);
btnDelete.setEnabled(false);
enabled(true);
else
if ( !txtFN.getText().trim().equals("") &&
!txtLN.getText().trim().equals("") &&
!txtAdd.getText().trim().equals("") &&
                    !txtCN.getText().trim().equals("") &&
!txtPos.getText().trim().equals("") &&
!txtEAd.getText().trim().equals("") &&
!txtCId.getText().trim().equals("") &&
gridApp.getSelectedRow() != -1
btnEdit.setText("Edit");
btnClose.setText("Close");
btnInsert.setEnabled(true);
btnSearch.setEnabled(true);
btnDelete.setEnabled(true);
if (gridApp.getSelectedRow() != -1)
Object[] objRow = new Object[8];
objRow[0] = "";
objRow[1] = txtFN.getText();
objRow[2] = txtLN.getText();
objRow[3] = txtAdd.getText();
objRow[4] = txtCN.getText();
                              objRow[5] = txtPos.getText();
objRow[6] = txtEAd.getText();
objRow[7] = txtCId.getText();
Statement stmt = conn.createStatement();
String strSql = "UPDATE Applicant SET [A_FirstName] = '" + txtFN.getText().trim() + "', ";
                              strSql += "[A_FirstName] = '" + txtFN.getText().trim() + "', ";
strSql += "[A_LastName] = '" + txtLN.getText().trim() + "', ";
strSql += "[A_Address] = '" + txtAdd.getText().trim() + "', ";
                              strSql += "[A_ContactNumber] = '" + txtCN.getText().trim() + "', ";
strSql += "[A_Position] = '" + txtPos.getText().trim() + "', ";
strSql += "[A_EAdd] = '" + txtEAd.getText().trim() + "', ";
strSql += "[C_ID] = '" + txtCId.getText().trim() + "', ";
strSql += " where [A_ID] = " + strFilter.trim();
System.out.println("STRSQL : " + strSql);
int result = stmt.executeUpdate(strSql);
                                   if (result > 0)
int row = gridApp.getSelectedRow();
model.removeRow(row);
gridApp.setModel(model);
model.insertRow(row, objRow);
gridApp.setModel(model);
}//if (result > 0)
stmt.close();
enabled(false);
}//(gridCustomer.getSelectedRow() != -1)
else
JOptionPane.showMessageDialog(this,"Can't modify record. Either the Last Name field is blank\n" +
"or you did not select a current record before editing!","Information",JOptionPane.INFORMATION_MESSAGE);
}//if ( !txtLast.getText().trim().equals("") && gridCustomer.getSelectedRow() != -1)
}//if (btnModify.getText().equals("Modify"))
}//try
catch(SQLException sqlex)
     sqlex.printStackTrace();
}//catch
     }//if ae.getsors
     if (ae.getSource() == btnSearch)
          try
          String strInput = "";
          int intRow = 1;
          boolean hasRec = false;
          strInput = JOptionPane.showInputDialog(this,"Enter Applicant First Name to be searched!","Search - Applicant Name",JOptionPane.OK_CANCEL_OPTION);
          String strSql = "select * from [Applicant] Where [A_FirstName] = " + strInput.trim() ;
          Statement stmt = conn.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE,ResultSet.CONCUR_UPDATABLE);
          ResultSet rst = stmt.executeQuery(strSql);
          hasRec = rst.first();
          System.out.println("STRSQL : " + strSql);
          System.out.println(hasRec);
if(!hasRec)
JOptionPane.showMessageDialog(this,"Record not found!","Search - First Name",JOptionPane.INFORMATION_MESSAGE);
gridApp.changeSelection(0,0,false,false);
else
     intRow = searchIt(strInput);
System.out.println(strInput +" ");
System.out.println(intRow);
JOptionPane.showMessageDialog(this,"Record found!","Search - Applicant ID",JOptionPane.INFORMATION_MESSAGE);
gridApp.changeSelection(intRow,0,false,false);
fillFields();
rst.close();
stmt.close();
}//try
catch(SQLException sqlex)
     sqlex.printStackTrace();
}//catch
     }//if ae.getsors
     if(ae.getSource()==btnDelete)
     int a;
     a = JOptionPane.showConfirmDialog(this,"Do you really want to delete?","Delete",JOptionPane.YES_NO_OPTION);
     if (a == JOptionPane.YES_OPTION && gridApp.getSelectedRow() != -1 )
     try
          Object[] objRow = new Object[8];
          objRow[0] = "";
          objRow[1] = txtFN.getText();
          objRow[2] = txtLN.getText();
          objRow[3] = txtAdd.getText();
          objRow[4] = txtCN.getText();
                    objRow[5] = txtPos.getText();
          objRow[6] = txtEAd.getText();
          objRow[7] = txtCId.getText();
          Statement stmt = conn.createStatement();
          String strSql = "delete * from Applicant where [A_ID] = " + strFilter.trim();
          System.out.println("STRSQL : " + strSql);
          int result = stmt.executeUpdate(strSql);
          if (result > 0)
          int row = gridApp.getSelectedRow();
          model.removeRow(row);
          gridApp.setModel(model);
          txtFN.setText("");
          txtLN.setText("");
          txtAdd.setText("");
          txtCN.setText("");
                              txtPos.setText("");
          txtEAd.setText("");
          txtCId.setText("");
     }//if (result > 0)
stmt.close();
}//try
catch(SQLException sqlex)
     sqlex.printStackTrace();
}//catch
}//if
}//if ae.getSors
if (ae.getSource()==btnClose)
int a;
a = JOptionPane.showConfirmDialog(this,"Do you really want to " + btnClose.getText().trim() + " ?", btnClose.getText().trim(),JOptionPane.YES_NO_OPTION);
if (a == JOptionPane.YES_OPTION)
     if (btnClose.getText().trim().equals("Revert"))
     if (gridApp.getSelectedRow() != -1)
          fillFields();
enabled(false);
else
          txtFN.setText("");
txtLN.setText("");
txtAdd.setText("");
txtCN.setText("");
                         txtPos.setText("");
txtEAd.setText("");
txtCId.setText("");
btnInsert.setText("Insert");
btnEdit.setText("Modify");
btnClose.setText("Close");
btnEdit.setEnabled(true);
btnInsert.setEnabled(true);
btnSearch.setEnabled(true);
btnDelete.setEnabled(true);
else
     this.dispose();
}//if
     }//if
}//if ae.getsors
}//actionperformed
private void initTableModel()
          try
               //make grid read-only later
               model = new DefaultTableModel()
                    public boolean isCellEditable(int row, int col)
                         return(false);
                    }//isCellEditable
               }; //DefaultTableModel
          }//try
          catch(Exception ex)
               ex.printStackTrace();
          }//catch
     }//initTableModel
     private void refreshGrid()
          try
     String strSql = "select * from [Applicant] order by [A_ID]";
Object[] arrObj = new Object[8];
model.addColumn("Applicant ID");
model.addColumn("First Name");
model.addColumn("Last Name");
model.addColumn("Address");
               model.addColumn("Contact Number");
model.addColumn("Position");
model.addColumn("Email Address");
model.addColumn("Company ID");
               Statement stmt = conn.createStatement();
               ResultSet rst = stmt.executeQuery(strSql);
          while (rst.next())
     arrObj[0] = "" + rst.getString("A_ID");
arrObj[1] = "" + rst.getString("A_FirstName");
arrObj[2] = "" + rst.getString("A_LastName");
arrObj[3] = "" + rst.getString("A_Address");
arrObj[4] = "" + rst.getString("A_ContactNumber");
               arrObj[5] = "" + rst.getString("A_Position");
arrObj[6] = "" + rst.getString("A_EAdd");
arrObj[7] = "" + rst.getString("C_ID");
model.addRow(arrObj);
          }//while
          rst.close();
          stmt.close();
gridApp.setModel(model);//set DefaultTableModel object to gridUser
     }//try
     catch(SQLException sqlex)
          sqlex.printStackTrace();
     }//catch
}//refreshGrid
private void setColumnWidths()
     gridApp.getTableHeader().setFont(new Font("Papyrus",Font.BOLD,12)); //make headers bold
gridApp.getColumn("Applicant ID").setPreferredWidth(6);
     gridApp.getColumn("First Name").setPreferredWidth(20);
gridApp.getColumn("Last Name").setPreferredWidth(20);
gridApp.getColumn("Address").setPreferredWidth(30);
gridApp.getColumn("Contact Number").setPreferredWidth(15);
     gridApp.getColumn("Position").setPreferredWidth(25);
gridApp.getColumn("Email Address").setPreferredWidth(20);
gridApp.getColumn("Company ID").setPreferredWidth(20);
}//setColumnWidths()
private void setGridEvents()
     //make grid responsive to key event
gridApp.addKeyListener(new KeyAdapter()
          public void keyReleased(KeyEvent ke)
               fillFields();
          }//keyReleased
     }//new KeyAdapter()
     );//addKeyListener
gridApp.addMouseListener(new MouseAdapter()
          public void mouseClicked(MouseEvent me)
     fillFields();
          }//mouseClicked
     }//new MouseAdapter()
     );//addMouseListener               
}//setGridEvents
private void fillFields()
     String str;
int row = gridApp.getSelectedRow();
strFilter = "" + gridApp.getValueAt(row,0); //filter
str = "" + gridApp.getValueAt(row,0);
     A_ID = str;
str = "" + gridApp.getValueAt(row,1);
A_FirstName = str;
txtFN.setText(str);
str = "" + gridApp.getValueAt(row,2);
A_LastName = str;
txtLN.setText(str);
str = "" + gridApp.getValueAt(row,3);
A_Address = str;
txtAdd.setText(str);
str = "" + gridApp.getValueAt(row,4);
A_ContactNumber = str;
txtCN.setText(str);
     str = "" + gridApp.getValueAt(row,5);
A_Position = str;
txtPos.setText(str);
str = "" + gridApp.getValueAt(row,6);
A_EAdd = str;
txtEAd.setText(str);
str = "" + gridApp.getValueAt(row,7);
C_ID = str;
txtCId.setText(str);
}//fillFields
     public int searchIt(String strVal)
          int last = 0;
          int ctr = 0;
          String str = "";
          last = gridApp.getRowCount();
          while (ctr <= last-1)
               str = "" + gridApp.getValueAt(ctr,0);
               if (str.toUpperCase().trim().compareTo(strVal.toUpperCase().trim()) == 0)
     return ctr;
               ctr++;
          return 0;
     }//private int searchIt(String strVal)
     private void enabled(boolean blnLock)
          txtFN.setEnabled(blnLock);
          txtLN.setEnabled(blnLock);
          txtAdd.setEnabled(blnLock);
          txtCN.setEnabled(blnLock);
          txtPos.setEnabled(blnLock);
          txtEAd.setEnabled(blnLock);
          txtCId.setEnabled(blnLock);
     }//enabled
}

aaneperez wrote:
here's my code in our project. it accesses a database and all of the methods are working except that the "edit" action performed wont work. the problem is that it's not updating my table whenever i tried to save what i edited. can someone help me.. I'd strongly recommend that you put your SQL code in a separate class that you can test without the Swing UI.
I can guess why your update doesn't stick: You're using Microsoft Access, and you aren't closing your java.sql resources properly (Connection, Statement, and ResultSet). It's well-known that database modifications in Access don't take unless you do.
http://sdnshare.sun.com/view.jsp?id=538
%

Similar Messages

  • The bottom part of my iPod screen isn't working please help!?

    going to an apple store is out of the question. there is none near me. please help!

    Try:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Reset all settings
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup. See:                                 
    iOS: How to back up           
    - Restore to factory settings/new iOS device.
    If still problem, make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
    Apple Retail Store - Genius Bar          
    Or you can sent it to Apple. See:
    Apple - Support - iPod - Service FAQ
    Or Google for third-party repair place.

  • ITunes store isn't working :( Please help!!

    Downloaded new version of iTunes (11.3.1.8) for my Windows 8 laptop. Blank screen. Help please??

    You can't change back to the U.S. Store without a credit card or at least a gift card, or any valid payment method.
    The none option would only appear when you create accounts. The iTunes Store requires that you provide a payment method and a billing address to change stores in order to validate your residency in the country you're changing to.

  • HT4993 Updated to iOs 7.1.1 and now my iphone 5s touch tone isn't working - please help

    I updated to 7.1.1 yesterday and now my in call touch tone isnt working - very annoying. Tried a reset and reset the keybvoard. Niether worked

    Is the device on mute?
    Are keyboard sounds enabled?

  • I turned my imessage off, and now when i try to turn it on it isn't working, any help please?:)

    i turned my imessage off, and now when i try to turn it on it isn't working, any help please?:)

    See if your Mac will boot from the install DVD.
    Then uninstall Internet Cleanup.
    Allan

  • I've re installed itunes but my ipod isn't recognised Please help!!!

    Ive installed itunes 10.5 and my ipod isn't being recognised I've done the recovary thing but it doesn't work please help me i need new music

    http://support.apple.com/kb/ht1808
    http://support.apple.com/kb/ts1567
    Basic troubleshooting steps  
    17" 2.2GHz i7 Quad-Core MacBook Pro  8G RAM  750G HD + OCZ Vertex 3 SSD Boot HD 
    Got problems with your Apple iDevice-like iPhone, iPad or iPod touch? Try Troubleshooting 101
     In Memory of Steve Jobs 

  • Hey, I wanna download Lion for free, so i need UP-TO-DATE , but it do not works , please help

    Hey, I wanna download Lion for free, so i need UP-TO-DATE , but it do not works , please help

    I think you misunderstood the guy. The up-to-date program isn't working for a lot of people. I'm eligible for the free upgrade but it fails to recognise my serial. From what I've read, this is affecting a lot of people who purchased their computers online. Apple seems to be fixing the issue though, so my advice would be to keep trying. Alternatively, click on the manual verificaton link so they can check your order for you and send the redemption code after they do.

  • My send button on messaging isn't working any help out there?

    My send button isn't working, any help?

        Hello monti221! Nothing is more frustrating than a phone that's not operating correctly. I want to help! Thank you gina7239 for your valuable input. My suggestion would be to complete a "restore" of your device. Using iTunes will ensure that all of your data is saved. If you need instructions please select the link and select iPhone support.. http://bit.ly/y5iuoj Let me know if this helps!
    ChaunceyM_VZWSupport
    Follow us on twitter @VZWSupport

  • I have problem with my wifi in 4 S, i cant connect to any wifi itried resetting network setting and reset all setting but the result was the same, its only keeps searching for wifi and cant find any, itried to use OTHER but also didnt work.please help me

    i have problem with my wifi in 4 S, i cant connect to any wifi itried resetting network setting and reset all setting but the result was the same, its only keeps searching for wifi and cant find any, itried to use OTHER but also didnt work.please help me???

    If Join was on then your home wi-fi must be set to Non-Broadcast.  If you did not set this up (maybe your provider did) then you will need to find the Network Name they used, and any password they used.  The SSID is Security Set ID and to see more try http://en.wikipedia.org/wiki/SSID .  Basically it is the name used to identify your router/network.  A lot of times the installer will leave it set as LinkSys, or Broadcom or whatever the manufacturer set it as for default.  Your best bet is to get whoever installed it to walk you through how they set it up, giving you id's and passwords so you can get in.  HOWEVER, if you are not comfortable with this (if you set security wrong, etc.) you would be well ahead of the game to hire a local computer tech (networking) to get this working for you.  You can also contact the vendor of your router and get help (if it is still in warranty), or at least get copies of the manuals as pdf files.  Sorry I can't give you more help, I hope this gives you an idea where to go from here to find more.

  • HT201412 my iphone 4s does not start by power switch, it starts when i connect to pc. the proximity sensor is not working. please help

    my iphone 4s does not start by power switch, it starts when i connect to pc. the proximity sensor is not working. please help.

    Sounds like it may be a hardware issue.
    Please contact Apple Support in your country.
    Here is a list of numbers: http://support.apple.com/kb/HE57
    Regards
    J

  • I have unabled 5 fingure gesture now not able to perform any task,also my power button is not working,please help me in removing this gesture,using I phone 4

    I have unabled 5 fingure gesture now not able to perform any task,also my power button is not working,please help me in removing this gesture,using I phone 4

    I have unabled 5 fingure gesture now not able to perform any task,also my power button is not working,please help me in removing this gesture,using I phone 4

  • I have 4s iPhone , I download the iOS 7. Now the front receiver microphone is not working , please help me that how to fix the problem.

    I have 4s iPhone , I download the iOS 7. Now the front receiver microphone is not working , please help me that how to fix the problem.

    I live in South Africa, and I had the same problem with my iPhone 4.
    After weeks of frustration and swearing, I was in the process of restoring my phone to a previous iOS. To do that you need to turn the "Find my iPhone" option off, since i turned it off, my problem was solved. No need to repair anything or revert back to old iOS.
    ***** that i cant use Find my iPhone, but atleast i can use my phone.

  • I installed windows 7 on my macbook pro. all is working but lan adaptor and sound od laptop is not working. please help me or send the link where i can download the these drivers.

    I installed windows 7 on my macbook pro. all is working but lan adaptor and sound od laptop is not working. please help me or send the link where i can download the these drivers.I have lost my resource cd .

    If you are running Lion or Mountain Lion, the drivers are downloaded from within Bootcamp Assistant. If you are running Snow Leopard the drivers are on your Snow Leopard install disk.
    Read the Bootcamp Install Guide for your version of OSx. http://www.apple.com/support/bootcamp/
    Bootcamp questions should be asked in the Bootcamp forum where the Bootcamp gurus hang out https://discussions.apple.com/community/windows_software/boot_camp

  • HT1554 Apparently, I don't know my "com.apple.smig keychain" password. And I'm in the middle of setting up my new Mac mini. I transferred data from my MacBook and what I thought was the password isn't working! Help!!

    Apparently, I don't know my "com.apple.smig keychain" password. And I'm in the middle of setting up my new Mac mini. I transferred data from my MacBook and what I thought was the password isn't working! Help!!

    Hello,
    See if this helps...
    Mac OS X 10.4 Help, I forgot a password in my Keychain
    http://docs.info.apple.com/article.html?path=Mac/10.4/en/mh1960.html
    Mac OS X 10.4: Keychain Access asks for keychain "login" after changing login password...
    http://support.apple.com/kb/HT1631
    Resetting your keychain in Mac OS X...
    If Keychain First Aid finds an issue that it cannot repair, or if you do not know your keychain password, you may need to reset your keychain.
    http://support.apple.com/kb/TS1544

  • HT4623 iOS 6.1 no longer available because you are no longer connected to the internet- this is what my iphone 4 shows. iv tried switching off again and again, closing apps by double tapping the home button but still not working. please help.

    this is what my iphone 4 shows. iv tried switching off again and again, closing apps by double tapping the home button but still not working. please help.
    is there any other method to download ios 6.1.2.
    my phone is not being recognized by itunes on my new windows 8. neither its working on touch copy.
    kindly help.
    thanks

    well in thatcase, i need another help .
    thanks for your instant reply.
    i have currently bought a new laptop (windows 8) and my iphone is not being recognized by itunes.
    because i have no backup on my previous laptop, i downloaded touchcopy but even touch copy is not recognizing my iphone.

  • I updated to Mountain Lion and now my Parallels application no longer works; please help! What to do???

    I updated to Mountain Lion and now my Parallels application no longer works; please help! What to do???

    Make sure you have the latest version of parrallels. Think older versions are not compatible.

Maybe you are looking for

  • How to open Camera RAW (CR2) files in Photoshop CS3 and CS4? (Mac)

    I have a Canon 7D. I prefer to shoot in raw format, but the CR2 files cannot be opened by either Photoshop CS3 on my Mac in the office OR by Photoshop CS4 on my iMac at home. I have tried dowloading the Adobe DNG Coverter and Camera Raw 4.6 update (w

  • Can't view document in library and I have View/Read Access

    Hello,  I have a document library that has unique permissions to edit and above but our "AllUsers" in our Active Directory has Read/View permission but those users cannot see 1 particular file in that library.  This issue is driving me crazy and I fe

  • Cannot connect to Oracle cache administrator.Please help.

    Hi , I was not able to connect to the Oracle TimesTen database the usual way. I get the following errors: Backend failed with exit status 1: C:\TimesTen\tt70_32\srv\info\ws\cgi-bin\cache/ttBackEnd.exe -connStr "DSN=TTSS" -user "APPS" -oraclepwd [Omit

  • How do I view a pdf files online within the body of the browser

    I am having some issues interacting with pdf documents online with a website called Equator.com. I am using the latest version of of Firefox (10.0) and running Mac OS Lion. What can be done to remedy this problem?

  • Problem in personalization..urgent

    Hi. Am trying to add a field to the existing page. I have set the VO and the attribute value to the created item. Can somebody guide me what to do next. i want the steps involved next in detail please so that i can populate the VO attribute value int