Plzzzzzzzzzz recover the error i have tried alot

plzz guys this is third time i m sending this code
try to correct it. i m not getting the error. it giving
[Microsoft][ODBC Microsoft Access Driver] Syntax error in INSERT INTO statement.
the code is
<html>
<head>
<%@ page language="java" import="java.sql.*" %>
<body>
         <h3><font color ="#800080"><center><Entry Before Repairs</center></FONT></h3>
           <BODY BGCOLOR="#B0C4DE">
           <style type="text/css">
             body, td, th {
                 font-family: verdana;
                 font-size:13pt;
                 font-color:#800080;
            th {
                text-align: center;
             h1 {
                 font-size: 150%;
                 text-align: center;
           </style>
           <form action="new1.jsp" method="POST" name="new.jsp">
           <table width="45%">
         <tr>
           <td width="12%"><font color="#800080"><h5>SNo.</h5></font</td>
           <td width="18%">
           <input type="TEXT" name="sno"/>
          </td>
           <td width="16"><font color="#800080"><h5>Nature</h5></font</td>
           <td width="52">
           <select name="nature">
           <option value="">Laptop</option>
           <option value="">PC</option>
           <option value="">Printer</option>
           <option value="">Monitor</option>
           <option value="">Peripherals</option>
           </select>
           </td>
         <tr>
           <td width="18"><font color="#800080"><h5>Description</h5></font</td>
           <td width="18">
           <textarea cols="20" rows="5" name="desc" /></textarea>
          </td>
           <td width="78"><font color="#800080"><h5>Serial No.</h5></font</td>
           <td width="68">
           <input type="TEXT" name="ser_no" />
          </td>
         <tr>
           <td width="78"><font color="#800080"><h5>Gatepass</h5></font</td>
           <td width="68">
           <input type="TEXT" name="gatepass" />
          </td>
           <td width="78"><font color="#800080"><h5>Probem</h5></font</td>
           <td width="68">
           <textarea cols="20" rows="5" name="problem" /></textarea>
          </td>
          <tr>
           <td width="78"><font color="#800080"><h5>Vendor</h5></font</td>
           <td width="68">
           <select name="vendor">
         <%
               Connection con = null;
               Statement stmt = null;
               Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
               con = DriverManager.getConnection("jdbc:odbc:database");
               stmt = con.createStatement();
               ResultSet rs = stmt.executeQuery("select * from vendor");
                if(rs != null)
                    while(rs.next()) {
                      String venname = rs.getString("ven_name");
          %>
               <option selected><%= venname %></option>
          <%
           %>
                 </select></td>
           <td width="78"><font color="#800080"><h5>Return Status</h5></font</td>
           <td width="68">
           <select name="ret_sts">
           <option value="">Yes</option>
           <option value="">No</option>
          </td>
         </tr>
       <tr>
           <td width="78"><font color="#800080"><h5>source</h5></font</td>
           <td width="68">
           <select name="source">
         <%
               Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
               con = DriverManager.getConnection("jdbc:odbc:database");
               stmt = con.createStatement();
               rs = stmt.executeQuery("select * from location");
                if(rs != null)
                    while(rs.next()) {
                      String locname = rs.getString("loc_name");
          %>
               <option selected><%= locname %></option>
          <%
           %>
                 </select></td>
           <td width="78"><font color="#800080"><h5>Designation</h5></font</td>
           <td width="68">
           <select name="desi">
            <%
               Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
               con = DriverManager.getConnection("jdbc:odbc:database");
               stmt = con.createStatement();
               rs = stmt.executeQuery("select * from location");
                if(rs != null)
                    while(rs.next()) {
                      String locname = rs.getString("loc_name");
          %>
               <option selected><%= locname %></option>
          <%
           %>
                 </select></td>
        </tr>
          <tr>
           <td width="78"><font color="#800080"><h5>Employee No.</h5></font</td>
           <td width="68">
            <input type="TEXT" name="emp_no" />
          </td>
           <td width="78"><font color="#800080"><h5>Employee Name</h5></font</td>
           <td width="68">
           <input type="TEXT" name="emp_name" />
          </td>
         </tr> 
        <tr>
           <td width="78"><font color="#800080"><h5>Date Out Source</h5></font</td>
           <td width="68">
           <input type= "text" name="dos">
           </td>
          <td width="78"><font color="#800080"><h5>Date in Designation</h5></font</td>
           <td width="78">
           <input type="text" name="did">
           </td>
          </tr>
           <tr>
           <form action="new1.jsp" method="post" name="new.jsp" id="<h5>submit</h5>">
           <td><BUTTON name="post" type="submit"><h5><font color="#800080">SUBMIT</font><h5></BUTTON></td>
           </form>
          </tr>
      </body>
</html>new1.jsp is
<html>
<%@ page language="java" import="java.sql.*" %>
<body>
<%
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    int sno  =Integer.parseInt(request.getParameter("sno"));
    String nature = request.getParameter("nature");
    String desc = request.getParameter("desc");
    String ser_no = request.getParameter("ser_no");
    int gatepass  =Integer.parseInt(request.getParameter("gatepass"));
    String problem = request.getParameter("problem");
    String vendor = request.getParameter("vendor");
    String ret_sts= request.getParameter("ret_sts");
    String source = request.getParameter("source");
    String desi = request.getParameter("desi");
    int emp_no  =Integer.parseInt(request.getParameter("emp_no"));
    String emp_name = request.getParameter("emp_name");
    String dos = request.getParameter("dos");
    String did = request.getParameter("did");
    Connection con = null;
    Statement stmt = null;
   con=DriverManager.getConnection("jdbc:odbc:database");
   stmt = con.createStatement();  
   int rowsAffected = stmt.executeUpdate("INSERT INTO br(sno, nature, desc, ser_no, gatepass, problem, vendor, ret_sts,     
                source, desi, emp_no, emp_name, dos, did) values('" + sno + "'," + nature + ",'" + desc + "','"
                     + ser_no + "',,'" + gatepass + "','" + problem + "'," + vendor + "," + ret_sts + "," + source + "," +
                  desi + ",'" + emp_no + "','" + emp_name + "','" + dos + "','" + did + "')");
          if(rowsAffected == 1)
     %>
         <h1>success</h1>
     <%
           else
     %>
       <h1>failed</h1>
     <%
        stmt.close();
        con.close();
      %>
    </body>
    </html>plz help me
regards

hi
i m not getting the desired output. can u plz help me.
i have correct the error but don't know where is the error
can u plz check the other code i have used to insert record. its also not working
         <%@ page session="false" %>
         <html>
         <body>
            <%@ page language="java" import="java.sql.*" %>
           <body bgcolor="#FFE4E1">
           <font color="#A0522D"><h1>Appllication</h1></font</td>
           <table width="45%">
         <tr>
           <td width="12%"><font color="#800080"><h5>SNo.</h5></font</td>
           <td width="18%">
           <input type="TEXT" name="sno"/>
          </td>
           <td width="16"><font color="#800080"><h5>Nature</h5></font</td>
           <td width="52">
           <select name="nature">
           <option value="Laptop">Laptop</option>
           <option value="PC">PC</option>
           <option value="Printer">Printer</option>
           <option value="Monitor">Monitor</option>
           <option value="Peripherals">Peripherals</option>
           </select>
           </td>
         <tr>
           <td width="18"><font color="#800080"><h5>Description</h5></font</td>
           <td width="18">
           <textarea cols="20" rows="5" name="desc" /></textarea>
          </td>
            <td width="78"><font color="#800080"><h5>Serial No.</h5></font</td>
           <td width="68">
           <input type="TEXT" name="ser_no" />
          </td>
             <tr>
           <td width="78"><font color="#800080"><h5>Gatepass</h5></font</td>
           <td width="68">
           <input type="TEXT" name="gatepass" />
          </td>
           <td width="78"><font color="#800080"><h5>Probem</h5></font</td>
           <td width="68">
           <textarea cols="20" rows="5" name="problem" /></textarea>
          </td>
          <tr>
           <td width="78"><font color="#800080"><h5>Vendor</h5></font</td>
           <td width="68">
           <select name="vendor">
         <%
               Connection con = null;
               Statement stmt = null;
               Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
               con = DriverManager.getConnection("jdbc:odbc:database");
               stmt = con.createStatement();
               ResultSet rs = stmt.executeQuery("select * from vendor");
                if(rs != null)
                    while(rs.next()) {
                      String venname = rs.getString("ven_name");
          %>
               <option selected><%= venname %></option>
          <%
           %>
                 </select></td>
           <td width="78"><font color="#800080"><h5>Return Status</h5></font</td>
           <td width="68">
           <select name="ret_sts">
           <option value="yes">Yes</option>
           <option value="no">No</option>
          </td>
         </tr>
       <tr>
           <td width="78"><font color="#800080"><h5>source</h5></font</td>
           <td width="68">
           <select name="source">
         <%
               Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
               con = DriverManager.getConnection("jdbc:odbc:database");
               stmt = con.createStatement();
               rs = stmt.executeQuery("select * from location");
                if(rs != null)
                    while(rs.next()) {
                      String locname = rs.getString("loc_name");
          %>
               <option selected><%= locname %></option>
          <%
           %>
                 </select></td>
           <td width="78"><font color="#800080"><h5>Designation</h5></font</td>
           <td width="68">
           <select name="desi">
            <%
               Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
               con = DriverManager.getConnection("jdbc:odbc:database");
               stmt = con.createStatement();
               rs = stmt.executeQuery("select * from location");
                if(rs != null)
                    while(rs.next()) {
                      String locname = rs.getString("loc_name");
          %>
               <option selected><%= locname %></option>
          <%
           %>
                 </select></td>
        </tr>
          <tr>
           <td width="78"><font color="#800080"><h5>Employee No.</h5></font</td>
           <td width="68">
            <input type="TEXT" name="emp_no" />
          </td>
           <td width="78"><font color="#800080"><h5>Employee Name</h5></font</td>
           <td width="68">
           <input type="TEXT" name="emp_name" />
          </td>
         </tr> 
        <tr>
           <td width="78"><font color="#800080"><h5>Date Out Source</h5></font</td>
           <td width="68">
           <input type= "text" name="dos">
           </td>
          <td width="78"><font color="#800080"><h5>Date in Designation</h5></font</td>
           <td width="78">
           <input type="text" name="did">
           </td>
          </tr>
          <p>
          <tr>
           <form action="ent2.jsp" method="post" name="app1.jsp" id="<h3>submit</h3>">
           <td><BUTTON name="post" type="submit"><h3><font color="#A0522D">SUBMIT</font><h3></BUTTON></td>
           </form>
          </tr>
         </p>
          <td><BUTTON name="reset" type="Reset"><h3><font color="AQ522D">RESET</font></h3></BUTTON></td>                    
          </form>        
         </body>
        </html>ent2.jsp is
<html>
  <head>
    <title> Application</title>
  </head>
  <body>
        <%@ page language="java" import="java.sql.*" %>
        <body bgcolor="#FFE4E1">
    <%
    int sno  =Integer.parseInt(request.getParameter("sno"));
    String nature = request.getParameter("nature");
    String desc = request.getParameter("desc");
    String ser_no = request.getParameter("ser_no");
    int gatepass = Integer.parseInt(request.getParameter("gatepass"));
    String problem = request.getParameter("problem");
    String vendor = request.getParameter("vendor");
    String ret_sts = request.getParameter("ret_sts");
    String source = request.getParameter("source");
    String desi = request.getParameter("desi");
    int emp_no = Integer.parseInt(request.getParameter("gatepass"));
    String emp_name = request.getParameter("emp_name");
    String dos = request.getParameter("dos");
    String did = request.getParameter("did");  
             Connection con = null;
          Statement stmt = null;
          PreparedStatement ps = null;
                ResultSet rs = null;
          try {
               Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
                  con=DriverManager.getConnection("jdbc:odbc:database");
                        String sql = "SELECT * FROM br WHERE sno like ?";
                           ps = con.prepareStatement(sql);
                           ps.setString(1, "%" + sno + "%");
                           rs = ps.executeQuery();
                           if(!rs.next())
               String sq;
                  sq = INSERT INTO br(sno, nature, desc, ser_no, gatepass, problem, vendor, ret_sts, source, desi,
                                emp_no, emp_name, dos, did) VALUES (?,?,?,?,?,?,?,?,?,?,?,?,?,?)
               ps = con.prepareStatement(sq);
               stmt = con.createStatement();
                        boolean proceed = false;
                 if(nature != null && desc != null && ser_no != null && problem != null && vendor != null && ret_sts
                          != null && source != null && desi != null && emp_name != null && dos != null && did != null)
                        if(nature.length() > 0 && desc.length() > 0 && ser_no.length() > 0 && problem.length() > 0 &&
                           vendor.length() > 0 && ret_sts.length() > 0 && source.length() > 0 && desi.length() > 0 &&
                           emp_name.length() > 0 && dos.length() > 0 && did.length() > 0)
                         proceed = true;
               if(proceed) {
                    ps.setInt(1,sno);
                    ps.setString(2,nature);
                                ps.setString(3,desc); 
                                ps.setString(4,ser_no);
                                ps.setInt(5,gatepass);
                                ps.setString(6,problem);
                                ps.setString(7,vendor);
                                ps.setString(8,ret_sts);
                                ps.setString(9,source);
                                ps.setString(10,desi);
                                ps.setInt(11,emp_no);
                                ps.setString(12,emp_name);
                                ps.setString(13,dos);
                                ps.setString(14,did);                               
                             ps.executeUpdate();
            %>                
                              <font color="#A0522D"><h2>Record submitted!</h2></font</td>               
             <%
                      else
             %>                 
                                 <font color="#A0522D"><h2>Record Already exist!</h2></font</td>
             <%              
                } catch (SQLException e) {
               out.println(e.getMessage());
          } catch (ClassNotFoundException e) {
               out.println(e.getMessage());
          } finally {
               try {
                    if(rs != null) {
                                        rs.close();
                                        rs = null;
                                if(stmt != null) {
                         stmt.close();
                                        stmt = null;
                    if(ps != null) {
                         ps.close();
                                        ps = null;
                    if(con != null) {
                         con.close();
                                        con = null;
               } catch (SQLException e) {}
    %>
    <form action="app1.jsp" method="post" name="ent2.jsp" id="<h4>NEXT!</h4>">
    <td><BUTTON name="post" type="submit"><h4><font color="#A0522D"> NEXT!</font></h4></BUTTON></td>
    <p>
</body>
</html>its giving error like
C:\tomcat\Tomcat 4.1\work\Standalone\localhost\jsp\ent2_jsp.java:83: ';' expected
          sq = INSERT INTO br(sno,nature,desc,ser_no,gatepass,problem,vendor,ret_sts,source,desi,
^
1 error
plz try to solve this error
regards

Similar Messages

  • I have just recieved the error message when trying to enter my AI, and PS.I have been paying for the monthly membership for 3 months and still havent been able to use these softwares. they are already installed it just wont let me acess them anymore?

    i have just recieved  the error meassage when trying to open up both my AI and PS. I have paid the monthly payments for the membership and i have both softwares installed. what can i do to work on them and why are they giving me this error message?

    Sign in, activation, or connection errors | CS5.5 and later
    For anything else you have to be more specific. you have not provided any system information nor told us, what the error message actually is.
    Mylenium

  • I'm getting this problem when trying to update my iphone 3gs it says that the iphone software could not be contacted and I went on youtube got some advise to go into my hard drive to fix the error I have nothing in my host file please help me if you can

    I'm getting this problem when trying to update my iphone 3gs it says that the iphone software could not be contacted and I went on youtube got some advise to go into my hard drive to fix the error I have nothing in my host file please help me if you can this is all new to me.

    Read this: iOS 4: Updating your device to iOS 5 or later
    ... oh I think it is a 3gs or a 3
    This makes a difference. What does it say in Settings > General > About?

  • TS3694 Upgrading my iPad2 to iOS6 seems to have worked but now have a 3014 error message, have tried following the support advice but seem to be going round in circles.

    Upgrading my iPad2 to iOS6 seems to have worked but now have a 3014 error message, have tried following the support advice but seem to be going round in circles and can't see what is wrong.
    iPod linked to my MacBook which is upto date and running Mountain Lion
    Noted that my wi-fi here is very slow, could that be an issue?

    From 3rd link below.
    Error 1004, 1013, 1638, 3014, 3194: These errors may be the result of the connection to gs.apple.com being redirected or blocked. Follow these steps to resolve these errors:
        1.    Install the latest version of iTunes.
        2.    Check security software. Ensure that communication to gs.apple.com is allowed. Follow this article for assistance with security software. iTunes for Windows: Troubleshooting security software issues.
        3.    Check the hosts file. The restore will fail if there is an active entry to redirect gs.apple.com. Follow iTunes: Advanced iTunes Store troubleshooting to edit the hosts file or revert to a default hosts file. See section "Blocked by configuration: (Mac OS X/Windows) > Rebuild network information".
        4.    Try to restore from another known-good computer and network.
        5.    If the errors persist on another computer, the device may need service.
    iPad: Basic troubleshooting
    http://support.apple.com/kb/TS3274
    Update and restore alert messages on iPhone, iPad, and iPod touch
    http://www.buybuyla.com/tech/view/012953a0d412000e.shtml
    iOS: Resolving update and restore alert messages
    http://support.apple.com/kb/TS1275
    iPad: Unable to update or restore
    http://support.apple.com/kb/ht4097
     Cheers, Tom

  • When trying to sync, I get this computer is no longer authorized for purchases on this iphone. I click on store-authorize this computer and get successful and still get the error. I tried deauthorizing and reauthorizing and keep getting this message. Help

    when trying to sync, I get this computer is no longer authorized for purchases on this iphone. I click on store-authorize this computer and get successful and still get the error. I tried deauthorizing and reauthorizing and keep getting this message. Help

    the solution you propose is not helping . are there alternatives ?
    I have Iphone 4  never  had any problem , and withouth changing or modifying , this problem popped up out of the blue ....
    Please HELP

  • TS1567 I have tried manually removing itunes and reinstalling. i have gone through the sevices anf tried turning on the AMDS. i have tried turning off the firewall. i have tried restoring my device. i have tried "fixing" the AMDS in the add/remove program

    I have tried manually removing itunes and reinstalling. i have gone through the sevices anf tried turning on the AMDS. i have tried turning off the firewall. i have tried restoring my device. i have tried "fixing" the AMDS in the add/remove programs. I have tried using a different device. i have tried using a different cable. I have tried all of the steps given in the link supplied by Apple. None of these things have fixed my problem. I still have the Error Message "The Apple Mobile Device Service started then stopped. Some services stop automatically if they have no work to do, for example, the Performance Logs or Alerts service. I am using Windows XP. I am leaning towards a last resort which would be to wipe my hard drive and start from scratch. Does anyone have a solution?

    chicx wrote:
    This is the third time of writing this on your Apple Support Communities!
    Not with your current user id.
    Far too much uneccesary information in your post, which only confuses things, a vast amount!
    Let's start with iTunes.
    Have you updated iTunes to 11.1.5, because the previous version did appear to have an issue about seeing iPods?
    With iTunes 11.1.5 installed, look in Edit/Preferences/Devices, (or use the ALT key, followed by the E key and then the F key) and make sure that the box named Prevent iPods, iPhones and iPads from syncing automatically does not have a tick in the box.
    Once you have doen those two things, check to see if the iPod is seen by iTunes.
    chicx wrote:
    By the way, what does IOS mean? (I thought IO stood for operating system, but am flummoxed by the S on the end.
    Really?
    OS stands for Operating System. (In computer speak, IO means Input/Output.)
    iOS originally stood for iPhone Operating System, but it now refers to the iPod Touch and iPhone. The iPod Classic, which you have listed in your profile as your iPod, does not use iOS.
    I assume that you have been listening to the Podcast in your iTunes on the computer as you cannot transfer it to your iPod. It's what I'd do.

  • Trying to restore after getting a new hard drive.  I can see the backup on the Time Capsule and on the correct date but it is Greyed out.  That is it wont let me open it and restore the machine.  Have tried also Migration Assistant, no luck.

    Trying to restore after getting a new hard drive.  I can see the backup on the Time Capsule and on the correct date but it is Greyed out.  That is it wont let me open it and restore the machine.  Have tried also Migration Assistant, no luck.

    https://discussions.apple.com/thread/5210788?tstart=0
    At startup hold down the Command+Option/Alt+r keys until you see a globe on the screen. Then use disk utility to partition and format the drive HSF+ and then select Reinstall Mac OS X. whatever version of OS X that originally came on your system will be installed and then you can upgrade back to Mavericks.

  • I have an iMac 5.1 which is running OSx10.5.8 - it runs very slowly and I can't find if there is a particular problem. In the process, I have tried to install 10.6 [I have a new iMac] and the 5.1 won't accept the install discs.

    I have an iMac 5.1 which is running OSx10.5.8 - it runs very slowly and I can't find if there is a particular problem. In the process, I have tried to install 10.6 [I have a new iMac] and the 5.1 won't accept the install discs.

    As you have discovered... you cannot use the install discs from another Mac...
    Re the iMac running OS X 10 5 8... and for your New Mac...
    See Here for keeping your Mac Happy...
    http://support.apple.com/kb/HT1147
    http://www.thexlab.com/faqs/maintainingmacosx.html
    http://www.thexlab.com/faqs/performance.html

  • My daughters ipod 4th gen will no longer charge past 20% and will not connect to a pc in order to back everything up. the cable is working fine, otherwise it would not even charge to the 20%. i have tried the reset to not lose any data and no luck. help!

    my daughters ipod 4th gen will no longer charge past 20% and will not connect to a pc in order to back everything up. the cable is working fine, otherwise it would not even charge to the 20%. i have tried the reset to not lose any data and no luck, home+power for 10-15 seconds. I really would like to not lose everything she has, again, because I can't back it up this time. I have tried charging via a wall outlet and PC and both charge fine, just only to 20%. I am using the cable that came with it so no aftermarket issues there. Please help so I don't have to reset everything again.

    Because once it has charged enough to be powered on as soon as you turn it on it says battery is at 20% and will not charge anymore after that, it just runs for about 5-10 minutes before the battery dies again. The battery cycles discharge/recharge daily and its not on the charger at full charge for more than a couple hours and is never totally dead for more than a couple of hours.

  • How do I recover the music I have purchased after a Windows disaster?

    How do I recover the music I have purchased after a Windows disaster? Windows on this computer stopped working correctly. I was told by HP support that the registry was corrupted and that I had to re-install Windows and programs from CDs that came with the computer. I did this and Windows started working correctly again. The only trouble is that all of the music I bought is gone. How do I recover the music I have purchased from iTunes after a Windows disaster and after re-installing Windows?
    Please tell me that you know about all of my song purchases and that there is a way I can download all of these to this computer again without having to pay for them again.
    I have learned my lesson about Windows. In the short run I plan to buy a backup drive that I can plug into this computer that I can restore from if and when something like this happens to Windows again. In the long run I plan to buy an Apple computer the next time I buy a computer.

    You could try contacting the iTunes Music Store Customer Service and you may be able to persuade them to sanction a second free download however they are not under any obligation to do so. The policy on lost songs is that you have to pay to download them again:
    "Once a Product is purchased and you receive the Product, it is your responsibility not to lose, destroy, or damage the Product, and Apple shall be without liability to you in the event of any loss, destruction, or damage."
    You can email them from any of the links on this page: iTMS Customer Service

  • We have a DVD in the super drive that will not eject.  The DVD does not show up on the desktop.  Have tried the keyboard eject button, and also restarting the computer.  Any ideas on how to eject it?

    We have a DVD in the super drive on our Macbook Pro that will not eject.  The DVD does not show up on the desktop.  Have tried the keyboard eject button, and also restarting the computer.  Any ideas on how to eject it?

    here is a troubleshooting article from Apple about this: http://support.apple.com/kb/ht2801.  Hope this helps

  • I created a Pages document inserting 2 columns using 1) Inspector 2) Layout 3) columns.  How do I decrease the height of the column.  Have tried to use cursor and drag down the top border, but that does not reset the top border.

    I created a Pages document inserting 2 columns using 1) Inspector 2) Layout 3) columns.  How do I decrease the height of the column.  Have tried to use the cursor and drag down the top border, but that does not reset/decrease the top border.

    Set your columns back to one for the moment. In layout mode, insert a Text box. Place it in the upper left corner of your document, and drag down and right to the size of the container for your two columns. Click inside the Text Box, and now bump up your columns to 2. Your two columns are now contained in this resizable Text Box.

  • Hi I want to change your e-secret questions because I forgot the answers I have tried sending reset questions on my mail and I have not received mail

    hi I want to change your e-secret questions because I forgot the answers I have tried sending reset questions on my mail and I have not received mail
    New mail that I want is [email protected]
    Alternative to the Old one

    From  King Penguin
    If you have a rescue email address set up on your account then you can try going to https://appleid.apple.com/ and click 'Manage your Apple ID' on the right-hand side of that page and log into your account. Then click on 'Password and Security' on the left-hand side of that page and on the right-hand side you might see an option to send security question reset info to your rescue email address.
    If you don't have a rescue email address set up then go to Express Lane  and select 'iTunes' from the list of 'products' in the middle of the screen.
    Then select 'iTunes Store', and on the next screen select 'Account Management'
    Next choose 'iTunes Store Account Questions' or 'iTunes Store account security' (it appears to vary by country) and fill in that you'd like your security questions/answers reset.
    You should get an email reply within about 24 hours (and check your Spam folder as well as your Inbox)

  • Hi, i get the error -49 when trying to Export a Movie edited in iMovie and recorded with Elgato Video Capture anyone know why i get this Error and can help me?

    Hi, i get the error -49 when trying to Export a Movie edited in iMovie and recorded with Elgato Video Capture anyone know why i get this Error and can help me?

    Read this
    http://support.apple.com/kb/ts1583

  • I have just come back from morocco where my phone worked ok using the morroco network, but since returning to the uk I can't get it to pick up a signal from the 'Three' network, have tried resetting etc but still wont work, any suggestions

    I have just come back from morocco where my phone worked ok using the morroco network, but since returning to the uk I can't get it to pick up a signal from the 'Three' network, have tried resetting etc but still wont work, any suggestions

    banannaphone,
    Welcome to Apple Discussions.
    Quit Safari, find the com.apple.Safari.plist file in your Macintosh HD/Users/yourusername/Library/Preferences Folder, drag it to the Desktop, log out/in or restart and let us know what happens.
    ;~)

Maybe you are looking for

  • How do I transfer all my iPhoto library to an external drive without losing the organising

    My iMac's internal drive is almost full - mainly with 25,000 photos accumulated over the last 10 years. These are carefully sorted into Events, Smart Albums, etc., and given titles, ratings, etc. As my iMac is becoming rather 'clunky' with little spa

  • AS3 Sound Problem...

    It's pretty simple really. I'm loading an swf into another. The child swf is playing audio. But when I remove it ( using removeChildAt( 0 ) ) , the sound keeps playing. I can't get it to stop. Everything else is gone. Just not the music. I'm sure it'

  • Where can I get some realtime lab scenarios for Windows Server 2008 R2?

    I want to develop my skills in Windows Server 2008 R2, so I need some real time scenarios and solutions. Suggest me some sites for that. So I can learn and practice with real time scenarios. For example: In XXX Company Domain Controller, deploy a Fil

  • Help with a VERY DIFFICULT Query.  Anyone up for the task?

    Hi, I have been struggling with this query for a week now and have made a little progress but not much: I apoligize for the long post but it needs explanation. Let me set up the question first. I have a query that needs to run for a crystal report gr

  • CRXI Service Pack 1

    Hello, I am not sure if it is me but when I search for Crystal XI Service Pack 1 on this page https://www.sdn.sap.com/irj/sdn/businessobjects-downloads, I am unable to find it.  I have two but am looking for one. Thanks.